Forgejo · Schema

UserSettingsOptions

UserSettingsOptions represents options to change user settings

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
description string
diff_view_style string
enable_repo_unit_hints boolean
full_name string
hide_activity boolean
hide_email boolean Privacy
hide_pronouns boolean
language string
location string
pronouns string
theme string
website string
View JSON Schema on GitHub

JSON Schema

usersettingsoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserSettingsOptions",
  "description": "UserSettingsOptions represents options to change user settings",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "x-go-name": "Description"
    },
    "diff_view_style": {
      "type": "string",
      "x-go-name": "DiffViewStyle"
    },
    "enable_repo_unit_hints": {
      "type": "boolean",
      "x-go-name": "EnableRepoUnitHints"
    },
    "full_name": {
      "type": "string",
      "x-go-name": "FullName"
    },
    "hide_activity": {
      "type": "boolean",
      "x-go-name": "HideActivity"
    },
    "hide_email": {
      "description": "Privacy",
      "type": "boolean",
      "x-go-name": "HideEmail"
    },
    "hide_pronouns": {
      "type": "boolean",
      "x-go-name": "HidePronouns"
    },
    "language": {
      "type": "string",
      "x-go-name": "Language"
    },
    "location": {
      "type": "string",
      "x-go-name": "Location"
    },
    "pronouns": {
      "type": "string",
      "x-go-name": "Pronouns"
    },
    "theme": {
      "type": "string",
      "x-go-name": "Theme"
    },
    "website": {
      "type": "string",
      "x-go-name": "Website"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}