feat: Implement password recovery

This commit is contained in:
Christian Pauly 2020-11-24 14:27:07 +01:00
commit b041cc2bb9
7 changed files with 331 additions and 4 deletions

View file

@ -2,7 +2,7 @@ abstract class AppConfig {
static String get applicationName => _applicationName;
static String _applicationName = 'FluffyChat';
static String get defaultHomeserver => _defaultHomeserver;
static String _defaultHomeserver = 'matrix.tchncs.de';
static String _defaultHomeserver = 'matrix-client.matrix.org';
static String get privacyUrl => _privacyUrl;
static String _privacyUrl = 'https://fluffychat.im/en/privacy.html';
static String get sourceCodeUrl => _sourceCodeUrl;