diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-25 13:41:10 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-25 13:41:10 +0700 |
commit | c157e27a000a12dc8f660c056744a6611beb01b1 (patch) | |
tree | 36ae4721a1cb92983c7a8fed41b737e0a5a57486 /docs/config.md | |
parent | e8c2f9a73a37636a9a8ed5c2998617b841f482da (diff) | |
parent | 3789945784a331790d73f69b407751df9f7d6e8f (diff) | |
download | pleroma-c157e27a000a12dc8f660c056744a6611beb01b1.tar.gz |
Merge branch 'develop' into feature/disable-account
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/config.md b/docs/config.md index ccf744f42..7b6631f9b 100644 --- a/docs/config.md +++ b/docs/config.md @@ -103,6 +103,7 @@ config :pleroma, Pleroma.Emails.Mailer, * `welcome_user_nickname`: The nickname of the local user that sends the welcome message. * `max_report_comment_size`: The maximum size of the report comment (Default: `1000`) * `safe_dm_mentions`: If set to true, only mentions at the beginning of a post will be used to address people in direct messages. This is to prevent accidental mentioning of people when talking about them (e.g. "@friend hey i really don't like @enemy"). (Default: `false`) +* `healthcheck`: if set to true, system data will be shown on ``/api/pleroma/healthcheck``. ## :logger * `backends`: `:console` is used to send logs to stdout, `{ExSyslogger, :ex_syslogger}` to log to syslog, and `Quack.Logger` to log to Slack @@ -486,3 +487,8 @@ config :ueberauth, Ueberauth, microsoft: {Ueberauth.Strategy.Microsoft, [callback_params: []]} ] ``` + +## :emoji +* `shortcode_globs`: Location of custom emoji files. `*` can be used as a wildcard. Example `["/emoji/custom/**/*.png"]` +* `groups`: Emojis are ordered in groups (tags). This is an array of key-value pairs where the key is the groupname and the value the location or array of locations. `*` can be used as a wildcard. Example `[Custom: ["/emoji/*.png", "/emoji/custom/*.png"]]` +* `default_manifest`: Location of the JSON-manifest. This manifest contains information about the emoji-packs you can download. Currently only one manifest can be added (no arrays). |