-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make various Cinny options configurable via dedicated variables
Provoked by etkecc/mrs#4 I've discovered that Cinny supports various configuration options and it'd be better if we add support for them.
- Loading branch information
1 parent
c95d181
commit 3b81f09
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
{ | ||
"defaultHomeserver": 0, | ||
"homeserverList": {{ matrix_client_cinny_config_homeserverList | to_json }} | ||
"defaultHomeserver": {{ matrix_client_cinny_config_defaultHomeserver | to_json }}, | ||
"homeserverList": {{ matrix_client_cinny_config_homeserverList | to_json }}, | ||
"allowCustomHomeservers": {{ matrix_client_cinny_config_allowCustomHomeservers | to_json }}, | ||
"featuredCommunities": { | ||
"spaces": {{ matrix_client_cinny_config_featuredCommunities_spaces | to_json }}, | ||
"rooms": {{ matrix_client_cinny_config_featuredCommunities_rooms | to_json }}, | ||
"servers": {{ matrix_client_cinny_config_featuredCommunities_servers | to_json }}, | ||
"openAsDefault": {{ matrix_client_cinny_config_featuredCommunities_openAsDefault | to_json }} | ||
} | ||
} |