fluffychat/lib/pangea/bot/utils/bot_name.dart
Wilson 7d52f58b4c
allow custom local bot name (#2027)
Co-authored-by: ggurdin <46800240+ggurdin@users.noreply.github.com>
2025-03-05 10:13:47 -05:00

10 lines
353 B
Dart

import 'package:fluffychat/pangea/common/config/environment.dart';
class BotName {
static String get byEnvironment => Environment.botName != null
? Environment.botName!
: Environment.isStaging
? "@bot:staging.pangea.chat"
: "@bot:pangea.chat";
static String get localBot => "@matrix-bot-test:staging.pangea.chat";
}