2020-09-18 12:58:22 +02:00
|
|
|
abstract class AppConfig {
|
|
|
|
static const String applicationName = 'FluffyChat';
|
|
|
|
static const String defaultHomeserver = 'matrix.tchncs.de';
|
2020-10-03 11:11:28 +02:00
|
|
|
static const String privacyUrl = 'https://fluffychat.im/en/privacy.html';
|
|
|
|
static const String sourceCodeUrl =
|
|
|
|
'https://gitlab.com/ChristianPauly/fluffychat-flutter';
|
|
|
|
static const String supportUrl =
|
|
|
|
'https://gitlab.com/ChristianPauly/fluffychat-flutter/issues';
|
2020-10-28 10:56:24 +01:00
|
|
|
static const String sentryDsn =
|
|
|
|
'https://8591d0d863b646feb4f3dda7e5dcab38@o256755.ingest.sentry.io/5243143';
|
2020-11-07 12:00:41 +01:00
|
|
|
static bool renderHtml = false;
|
|
|
|
static bool hideRedactedEvents = false;
|
|
|
|
static bool hideUnknownEvents = false;
|
2020-09-18 12:58:22 +02:00
|
|
|
}
|