We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e6643 commit 154ab15Copy full SHA for 154ab15
gitlab3/_api_definition.py
@@ -163,14 +163,11 @@ class GetBlobAction(ExtraActionDefinition):
163
url = '/repository/commits/:sha/blob'
164
method = _HTTP_GET
165
url_params = [
166
- 'sha',
+ 'sha_or_ref_name',
167
]
168
required_params = [
169
'filepath',
170
171
- class BlobAction(GetBlobAction):
172
- """Alias for get_blob()"""
173
- pass
174
class ProtectBranchAction(ExtraActionDefinition):
175
"""gl.Project.protect_branch()"""
176
url = '/repository/branches/:branch/protect'
@@ -212,7 +209,6 @@ def wrapped(self, branch):
212
209
ForkFromAction,
213
210
DeleteForkAction,
214
211
GetBlobAction,
215
- BlobAction,
216
ProtectBranchAction,
217
UnprotectBranchAction,
218
0 commit comments