diff options
author | 2023-05-25 15:18:15 +0200 | |
---|---|---|
committer | 2023-05-25 15:18:15 +0200 | |
commit | fc524f8cf16761f949303a96bca14e63c46ceda8 (patch) | |
tree | 7c73a836c4d0d89e3dbc672269ceabad082547e6 /docs/configuration/accounts.md | |
parent | [bugfix] allow usernames of length 1 (#1823) (diff) | |
download | gotosocial-fc524f8cf16761f949303a96bca14e63c46ceda8.tar.xz |
[feature] Configurable custom css length (#1827)
* [feature] Make accounts custom css length configurable
* test custom css validation
Diffstat (limited to 'docs/configuration/accounts.md')
-rw-r--r-- | docs/configuration/accounts.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/configuration/accounts.md b/docs/configuration/accounts.md index 3f0c6d5f8..0f4fecde0 100644 --- a/docs/configuration/accounts.md +++ b/docs/configuration/accounts.md @@ -39,4 +39,11 @@ accounts-reason-required: true # Options: [true, false] # Default: false accounts-allow-custom-css: false + +# Int. If accounts-allow-custom-css is true, this is the permitted length in characters for +# CSS uploaded by accounts on this instance. No effect if accounts-allow-custom-css is false. +# +# Examples: [500, 5000, 9999] +# Default: 10000 +accounts-custom-css-length: 10000 ``` |