kopia lustrzana https://github.com/Langenfeld/py-gitea
(bugfix) update to gitea 1.18 api changes
rodzic
cd2fa45182
commit
db9b136b93
|
@ -34,8 +34,10 @@ class Organization(ApiObject):
|
||||||
@classmethod
|
@classmethod
|
||||||
def parse_response(cls, gitea, result) -> 'Organization':
|
def parse_response(cls, gitea, result) -> 'Organization':
|
||||||
api_object = super().parse_response(gitea, result)
|
api_object = super().parse_response(gitea, result)
|
||||||
# add "name" field to make this behave similar to users
|
# add "name" field to make this behave similar to users for gitea < 1.18
|
||||||
Organization._add_read_property("name", result["username"], api_object)
|
# also necessary for repository-owner when org is repo owner
|
||||||
|
if not hasattr(api_object, "name"):
|
||||||
|
Organization._add_read_property("name", result["username"], api_object)
|
||||||
return api_object
|
return api_object
|
||||||
|
|
||||||
_patchable_fields = {"description", "full_name", "location", "visibility", "website"}
|
_patchable_fields = {"description", "full_name", "location", "visibility", "website"}
|
||||||
|
|
Ładowanie…
Reference in New Issue