kopia lustrzana https://github.com/Langenfeld/py-gitea
(feat) Repository: Update patchable fields to Gitea as of 1.18.3
Also add a commit method to be able to perform patching.pull/20/head
rodzic
b5f27f70bd
commit
7a9866116d
|
@ -357,22 +357,40 @@ class Repository(ApiObject):
|
||||||
return cls._request(gitea, {"owner": owner, "name": name})
|
return cls._request(gitea, {"owner": owner, "name": name})
|
||||||
|
|
||||||
_patchable_fields = {
|
_patchable_fields = {
|
||||||
|
"allow_manual_merge",
|
||||||
"allow_merge_commits",
|
"allow_merge_commits",
|
||||||
"allow_rebase",
|
"allow_rebase",
|
||||||
"allow_rebase_explicit",
|
"allow_rebase_explicit",
|
||||||
|
"allow_rebase_update",
|
||||||
"allow_squash_merge",
|
"allow_squash_merge",
|
||||||
"archived",
|
"archived",
|
||||||
|
"autodetect_manual_merge",
|
||||||
"default_branch",
|
"default_branch",
|
||||||
|
"default_delete_branch_after_merge",
|
||||||
|
"default_merge_style",
|
||||||
"description",
|
"description",
|
||||||
|
"enable_prune",
|
||||||
|
"external_tracker",
|
||||||
|
"external_wiki",
|
||||||
"has_issues",
|
"has_issues",
|
||||||
|
"has_projects",
|
||||||
"has_pull_requests",
|
"has_pull_requests",
|
||||||
"has_wiki",
|
"has_wiki",
|
||||||
"ignore_whitespace_conflicts",
|
"ignore_whitespace_conflicts",
|
||||||
|
"internal_tracker",
|
||||||
|
"mirror_interval",
|
||||||
"name",
|
"name",
|
||||||
"private",
|
"private",
|
||||||
|
"template",
|
||||||
"website",
|
"website",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def commit(self):
|
||||||
|
values = self.get_dirty_fields()
|
||||||
|
args = {"owner": self.owner.username, "name": self.name}
|
||||||
|
self.gitea.requests_patch(self.API_OBJECT.format(**args), data=values)
|
||||||
|
self.dirty_fields = {}
|
||||||
|
|
||||||
def get_branches(self) -> List['Branch']:
|
def get_branches(self) -> List['Branch']:
|
||||||
"""Get all the Branches of this Repository."""
|
"""Get all the Branches of this Repository."""
|
||||||
results = self.gitea.requests_get(
|
results = self.gitea.requests_get(
|
||||||
|
|
Ładowanie…
Reference in New Issue