Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
This is the documentation of the next version, still under development. See the latest release.

Get instance's global settings for ui

GET
/settings/ui
curl --request GET \
--url https://gitea.com/api/v1/settings/ui \
--header 'Authorization: Basic <credentials>'

GeneralUISettings

Media typeapplication/json

GeneralUISettings contains global ui settings exposed by API

object
allowed_reactions

AllowedReactions contains the list of allowed emoji reactions

Array<string>
custom_emojis

CustomEmojis contains the list of custom emojis

Array<string>
default_theme

DefaultTheme is the default UI theme

string
Examplegenerated
{
"allowed_reactions": [
"example"
],
"custom_emojis": [
"example"
],
"default_theme": "example"
}