mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-20 16:10:50 +00:00
[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>
This commit is contained in:
parent
2842f6cf42
commit
b534a5164f
5 changed files with 75 additions and 0 deletions
|
@ -512,6 +512,9 @@ func RegisterRoutes(m *macaron.Macaron) {
|
|||
m.Get("/signing-key.gpg", misc.SigningKey)
|
||||
m.Post("/markdown", bind(api.MarkdownOption{}), misc.Markdown)
|
||||
m.Post("/markdown/raw", misc.MarkdownRaw)
|
||||
m.Group("/settings", func() {
|
||||
m.Get("/allowed_reactions", misc.SettingGetsAllowedReactions)
|
||||
})
|
||||
|
||||
// Notifications
|
||||
m.Group("/notifications", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue