diff options
author | 2023-05-25 15:18:15 +0200 | |
---|---|---|
committer | 2023-05-25 15:18:15 +0200 | |
commit | fc524f8cf16761f949303a96bca14e63c46ceda8 (patch) | |
tree | 7c73a836c4d0d89e3dbc672269ceabad082547e6 /test/envparsing.sh | |
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 'test/envparsing.sh')
-rwxr-xr-x | test/envparsing.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/envparsing.sh b/test/envparsing.sh index 8ceabde8f..01a0877b0 100755 --- a/test/envparsing.sh +++ b/test/envparsing.sh @@ -7,6 +7,7 @@ EXPECT=$(cat <<"EOF" "account-domain": "peepee", "accounts-allow-custom-css": true, "accounts-approval-required": false, + "accounts-custom-css-length": 5000, "accounts-reason-required": false, "accounts-registration-open": true, "advanced-cookies-samesite": "strict", @@ -207,6 +208,7 @@ GTS_INSTANCE_EXPOSE_SUSPENDED_WEB=true \ GTS_INSTANCE_EXPOSE_PUBLIC_TIMELINE=true \ GTS_INSTANCE_DELIVER_TO_SHARED_INBOXES=false \ GTS_ACCOUNTS_ALLOW_CUSTOM_CSS=true \ +GTS_ACCOUNTS_CUSTOM_CSS_LENGTH=5000 \ GTS_ACCOUNTS_REGISTRATION_OPEN=true \ GTS_ACCOUNTS_APPROVAL_REQUIRED=false \ GTS_ACCOUNTS_REASON_REQUIRED=false \ |