aboutsummaryrefslogtreecommitdiffstats
path: root/routers/api/v1/misc
diff options
context:
space:
mode:
author6543 <6543@obermui.de>2020-06-04 11:16:53 +0200
committerGitHub <noreply@github.com>2020-06-04 12:16:53 +0300
commitb534a5164fe13dc41aa2996239c2dff4f109dee0 (patch)
treed790711e74321cb0344eafa33f2eeb594e68cb07 /routers/api/v1/misc
parent2842f6cf42ab984a7f533a51a050425ebaa2313b (diff)
downloadgitea-b534a5164fe13dc41aa2996239c2dff4f109dee0.tar.gz
gitea-b534a5164fe13dc41aa2996239c2dff4f109dee0.zip
[API] Expose allowed Reactions (#11735)
* [API] Expose allowed Reactions * dont be in soutch a rush * add TEST * use ElementsMatch Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'routers/api/v1/misc')
-rw-r--r--routers/api/v1/misc/settings.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/routers/api/v1/misc/settings.go b/routers/api/v1/misc/settings.go
new file mode 100644
index 0000000000..11c7eef726
--- /dev/null
+++ b/routers/api/v1/misc/settings.go
@@ -0,0 +1,23 @@
+// Copyright 2020 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package misc
+
+import (
+ "code.gitea.io/gitea/modules/context"
+ "code.gitea.io/gitea/modules/setting"
+)
+
+// SettingGetsAllowedReactions return allowed reactions
+func SettingGetsAllowedReactions(ctx *context.APIContext) {
+ // swagger:operation GET /settings/allowed_reactions miscellaneous getAllowedReactions
+ // ---
+ // summary: Returns string array of allowed reactions
+ // produces:
+ // - application/json
+ // responses:
+ // "200":
+ // "$ref": "#/responses/StringSlice"
+ ctx.JSON(200, setting.UI.Reactions)
+}