diff options
Diffstat (limited to 'routes/api/v1/api.go')
-rw-r--r-- | routes/api/v1/api.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/routes/api/v1/api.go b/routes/api/v1/api.go index 3ac5ef98..2fb2ebb0 100644 --- a/routes/api/v1/api.go +++ b/routes/api/v1/api.go @@ -293,6 +293,8 @@ func RegisterRoutes(m *macaron.Macaron) { Patch(reqRepoWriter(), bind(api.EditMilestoneOption{}), repo.EditMilestone). Delete(reqRepoWriter(), repo.DeleteMilestone) }) + + m.Patch("/issue-tracker", bind(api.EditIssueTrackerOption{}), repo.IssueTracker) m.Post("/mirror-sync", repo.MirrorSync) m.Get("/editorconfig/:filename", context.RepoRef(), repo.GetEditorconfig) }, repoAssignment()) |