mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 16:53:25 +01:00
b534a5164f
* [API] Expose allowed Reactions * dont be in soutch a rush * add TEST * use ElementsMatch Co-authored-by: Lauris BH <lauris@nix.lv>
24 lines
680 B
Go
24 lines
680 B
Go
// 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)
|
|
}
|