chore: Make privacy url not configurable
This commit is contained in:
parent
b856e83e83
commit
136ddd7681
5 changed files with 13 additions and 10 deletions
|
|
@ -50,4 +50,10 @@ abstract class AppConfig {
|
|||
host: 'servers.joinmatrix.org',
|
||||
path: 'servers.json',
|
||||
);
|
||||
|
||||
static final Uri privacyUrl = Uri(
|
||||
scheme: 'https',
|
||||
host: 'github.com',
|
||||
path: '/krille-chan/fluffychat/blob/main/PRIVACY.md',
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,10 +52,6 @@ enum AppSettings<T> {
|
|||
// AppConfig-mirrored settings
|
||||
applicationName<String>('chat.fluffy.application_name', 'FluffyChat'),
|
||||
defaultHomeserver<String>('chat.fluffy.default_homeserver', 'matrix.org'),
|
||||
privacyUrl<String>(
|
||||
'chat.fluffy.privacy_url',
|
||||
'https://github.com/krille-chan/fluffychat/blob/main/PRIVACY.md',
|
||||
),
|
||||
// colorSchemeSeed stored as ARGB int
|
||||
colorSchemeSeedInt<int>(
|
||||
'chat.fluffy.color_scheme_seed',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue