We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 342e944 + 2d8c89b commit 1350209Copy full SHA for 1350209
gitlab3/_api_definition.py
@@ -198,13 +198,25 @@ def wrapped(self, branch):
198
except AttributeError:
199
pass
200
return wrapped
201
+ class SetGitlabCIAction(ExtraActionDefinition):
202
+ url = '/services/gitlab-ci'
203
+ method = _HTTP_PUT
204
+ required_params = [
205
+ 'token',
206
+ 'project_url'
207
+ ]
208
+ class DeactivateGitlabCIAction(ExtraActionDefinition):
209
210
+ method = _HTTP_DELETE
211
212
extra_actions = [
213
ForkFromAction,
214
DeleteForkAction,
215
GetBlobAction,
216
ProtectBranchAction,
217
UnprotectBranchAction,
218
+ SetGitlabCIAction,
219
+ DeactivateGitlabCIAction,
220
]
221
222
###
0 commit comments