* feat: added introducton and accouncements chats to new space * chore: make spaceID redirect clearer * chore: remove bot from default power levels
9 lines
382 B
Dart
9 lines
382 B
Dart
class SpaceConstants {
|
|
static const powerLevelOfAdmin = 100;
|
|
static const languageToolPermissions = 1;
|
|
static const defaultDominantLanguage = "en";
|
|
static const defaultTargetLanguage = "es";
|
|
static const String classCode = 'classcode';
|
|
static const String introductionChatAlias = 'introductionChat';
|
|
static const String announcementsChatAlias = 'announcementsChat';
|
|
}
|