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 f8d1a76 + d97cdf6 commit aee0dfaCopy full SHA for aee0dfa
gitlab3/_api_definition.py
@@ -214,6 +214,14 @@ class DeactivateGitlabCIAction(ExtraActionDefinition):
214
url = '/services/gitlab-ci'
215
method = _HTTP_DELETE
216
217
+ class StarAction(ExtraActionDefinition):
218
+ url = '/star'
219
+ method = _HTTP_POST
220
+
221
+ class UnstarAction(ExtraActionDefinition):
222
223
+ method = _HTTP_DELETE
224
225
extra_actions = [
226
ForkFromAction,
227
DeleteForkAction,
@@ -223,6 +231,8 @@ class DeactivateGitlabCIAction(ExtraActionDefinition):
231
UnprotectBranchAction,
232
SetGitlabCIAction,
233
DeactivateGitlabCIAction,
234
+ StarAction,
235
+ UnstarAction,
236
]
237
228
238
###
0 commit comments