Skip to content

Commit

Permalink
Update away from deprecated GitLab field
Browse files Browse the repository at this point in the history
Keep our field the same, but avoid this deprecated call

Signed-off-by: Tim Smith <[email protected]>
  • Loading branch information
tas50 committed Jan 24, 2025
1 parent 40ab0ce commit a4a6023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/gitlab/resources/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func initGitlabGroup(runtime *plugin.Runtime, args map[string]*llx.RawData) (map
args["requireTwoFactorAuthentication"] = llx.BoolData(grp.RequireTwoFactorAuth)
args["preventForkingOutsideGroup"] = llx.BoolData(grp.PreventForkingOutsideGroup)
args["mentionsDisabled"] = llx.BoolData(grp.MentionsDisabled)
args["emailsDisabled"] = llx.BoolData(grp.EmailsDisabled)
args["emailsDisabled"] = llx.BoolData(!grp.EmailsEnabled)

return args, nil, nil
}
Expand Down

0 comments on commit a4a6023

Please sign in to comment.