Skip to content

Commit

Permalink
Merge pull request #101 from systemli/Fix-settings.json
Browse files Browse the repository at this point in the history
πŸ› Fix settings.json
  • Loading branch information
0x46616c6b authored May 18, 2024
2 parents bffe609 + ace61d9 commit 1853feb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/settings.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
"importMaxFileSize": {{ etherpad_import_max_file_size }},
"customLocaleStrings": {{ etherpad_custom_locale_strings|to_json }},
"enableAdminUITests": {{ etherpad_enable_admin_ui_tests }},
"authenticationMethod": {{ etherpad_authentication_method }},
"authenticationMethod": {{ etherpad_authentication_method|to_json }},
"lowerCasePadIds": {{ etherpad_lower_case_pad_ids }},
{% if etherpad_authentication_method == "sso" %}
"sso": {
Expand All @@ -186,10 +186,10 @@
},
{% endif %}
"ttl": {
"AccessToken": "{{ etherpad_ttl_access_token }}",
"AuthorizationCode": "{{ etherpad_ttl_authorization_code }}",
"ClientCredentials": "{{ etherpad_ttl_client_credentials }}",
"IdToken": "{{ etherpad_ttl_id_token }}",
"RefreshToken": "{{ etherpad_ttl_refresh_token }}"
"AccessToken": {{ etherpad_ttl_access_token }},
"AuthorizationCode": {{ etherpad_ttl_authorization_code }},
"ClientCredentials": {{ etherpad_ttl_client_credentials }},
"IdToken": {{ etherpad_ttl_id_token }},
"RefreshToken": {{ etherpad_ttl_refresh_token }}
}
}

0 comments on commit 1853feb

Please sign in to comment.