File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
12
12
func dataSourceGiteaOrg () * schema.Resource {
13
13
return & schema.Resource {
14
- Read : dataSourceGitlabUserRead ,
14
+ Read : dataSourceGiteaUserRead ,
15
15
Schema : map [string ]* schema.Schema {
16
16
"id" : {
17
17
Type : schema .TypeInt ,
@@ -50,7 +50,7 @@ func dataSourceGiteaOrg() *schema.Resource {
50
50
}
51
51
}
52
52
53
- func dataSourceGitlabOrgRead (d * schema.ResourceData , meta interface {}) error {
53
+ func dataSourceGiteaOrgRead (d * schema.ResourceData , meta interface {}) error {
54
54
client := meta .(* gitea.Client )
55
55
56
56
var org * gitea.Organization
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
12
12
func dataSourceGiteaUser () * schema.Resource {
13
13
return & schema.Resource {
14
- Read : dataSourceGitlabUserRead ,
14
+ Read : dataSourceGiteaUserRead ,
15
15
Schema : map [string ]* schema.Schema {
16
16
"id" : {
17
17
Type : schema .TypeInt ,
@@ -54,7 +54,7 @@ func dataSourceGiteaUser() *schema.Resource {
54
54
}
55
55
}
56
56
57
- func dataSourceGitlabUserRead (d * schema.ResourceData , meta interface {}) error {
57
+ func dataSourceGiteaUserRead (d * schema.ResourceData , meta interface {}) error {
58
58
client := meta .(* gitea.Client )
59
59
60
60
var user * gitea.User
You can’t perform that action at this time.
0 commit comments