forked from forgejo/forgejo
Add repo mirror sync API endpoint (#1508)
* API: Add repo mirror sync * Correct error message * Change http status to 200
This commit is contained in:
parent
2eeae84cbd
commit
f995bcc87a
2 changed files with 13 additions and 0 deletions
|
@ -402,6 +402,7 @@ func RegisterRoutes(m *macaron.Macaron) {
|
|||
Patch(bind(api.EditReleaseOption{}), repo.EditRelease).
|
||||
Delete(repo.DeleteRelease)
|
||||
})
|
||||
m.Post("/mirror-sync", repo.MirrorSync)
|
||||
m.Get("/editorconfig/:filename", context.RepoRef(), repo.GetEditorconfig)
|
||||
m.Group("/pulls", func() {
|
||||
m.Combo("").Get(bind(api.ListPullRequestsOptions{}), repo.ListPullRequests).Post(reqRepoWriter(), bind(api.CreatePullRequestOption{}), repo.CreatePullRequest)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue