some more minor little changes

This commit is contained in:
stupidcomputer 2024-10-09 07:11:25 -05:00
parent 14680c1746
commit 3e68945bfc
2 changed files with 5 additions and 4 deletions

View File

@ -79,10 +79,11 @@ def gitea_handle_repo_action():
["issues", "issue_comment"]
)
return ''
elif repo_action == "deleted":
github.delete_repo(repo_owner, repo_name)
return ''
@app.route("/bridge/endpoints/gitea/issue", methods=["POST"])
def gitea_handle_issue_action():
@ -219,11 +220,11 @@ def gitea_handle_issue_action():
repo_owner,
repo_name,
issue_number,
body,
comment_body,
)
elif event_type == "closed":
github_close_issue_result = github.close_issue_by_number(
github.close_issue_by_number(
repo_owner,
repo_name,
issue_number,

View File

@ -183,11 +183,11 @@ class Gitea(WebgitClient):
repo_name,
),
json={
"active": True,
"config": {
"url": http_endpoint,
"content_type": "json",
},
"active": True,
"events": events,
"type": "gitea",
},