aboutsummaryrefslogtreecommitdiffstats
path: root/routers/api/v1/api.go
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-09-04 20:10:15 +0200
committerGitHub <noreply@github.com>2020-09-04 14:10:15 -0400
commit2a52aeec496b9b1581917124c1002b46f4304b37 (patch)
treeb55eafaf95878f1bbf54618fe09caeb5f96305f2 /routers/api/v1/api.go
parent45c0ec31525853b9cfdbd09dc4f41aaeeacdb44c (diff)
downloadgitea-2a52aeec496b9b1581917124c1002b46f4304b37.tar.gz
gitea-2a52aeec496b9b1581917124c1002b46f4304b37.zip
API: Expose its limitation settings (#12714)
* API: Expose its limitation settings * TESTs Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'routers/api/v1/api.go')
-rw-r--r--routers/api/v1/api.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/api/v1/api.go b/routers/api/v1/api.go
index ab7ef6d6f7..027c6abc97 100644
--- a/routers/api/v1/api.go
+++ b/routers/api/v1/api.go
@@ -521,6 +521,7 @@ func RegisterRoutes(m *macaron.Macaron) {
m.Post("/markdown/raw", misc.MarkdownRaw)
m.Group("/settings", func() {
m.Get("/ui", settings.GetGeneralUISettings)
+ m.Get("/api", settings.GetGeneralAPISettings)
m.Get("/repository", settings.GetGeneralRepoSettings)
})