Forgejo · Schema

GeneralUISettings

GeneralUISettings contains global ui settings exposed by API

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
allowed_reactions array
custom_emojis array
default_theme string
View JSON Schema on GitHub

JSON Schema

generaluisettings.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GeneralUISettings",
  "description": "GeneralUISettings contains global ui settings exposed by API",
  "type": "object",
  "properties": {
    "allowed_reactions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "AllowedReactions"
    },
    "custom_emojis": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "x-go-name": "CustomEmojis"
    },
    "default_theme": {
      "type": "string",
      "x-go-name": "DefaultTheme"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}