refactor: Remove deprecated jitsi call generator
This commit is contained in:
parent
6d96c694b9
commit
9c36a52308
13 changed files with 1 additions and 132 deletions
|
|
@ -9,7 +9,6 @@ abstract class AppConfig {
|
|||
static String? get applicationWelcomeMessage => _applicationWelcomeMessage;
|
||||
static String _defaultHomeserver = 'matrix.org';
|
||||
static String get defaultHomeserver => _defaultHomeserver;
|
||||
static String jitsiInstance = 'https://meet.jit.si/';
|
||||
static double bubbleSizeFactor = 1;
|
||||
static double fontSizeFactor = 1;
|
||||
static Color chatColor = primaryColor;
|
||||
|
|
@ -77,9 +76,6 @@ abstract class AppConfig {
|
|||
if (json['default_homeserver'] is String) {
|
||||
_defaultHomeserver = json['default_homeserver'];
|
||||
}
|
||||
if (json['jitsi_instance'] is String) {
|
||||
jitsiInstance = json['jitsi_instance'];
|
||||
}
|
||||
if (json['privacy_url'] is String) {
|
||||
_webBaseUrl = json['privacy_url'];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
abstract class SettingKeys {
|
||||
static const String jitsiInstance = 'chat.fluffy.jitsi_instance';
|
||||
static const String wallpaper = 'chat.fluffy.wallpaper';
|
||||
static const String renderHtml = 'chat.fluffy.renderHtml';
|
||||
static const String hideRedactedEvents = 'chat.fluffy.hideRedactedEvents';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue