Co-authored-by: Cursor <cursoragent@cursor.com> Co-authored-by: multica-agent <github@multica.ai>
20 lines
668 B
Dart
20 lines
668 B
Dart
/// 公司功能开关。关闭项直接不展示入口,不扩范围外功能。
|
|
class FeatureFlags {
|
|
FeatureFlags._();
|
|
|
|
/// 只用工号+密码,关闭官方手机号/邮箱/验证码登录。
|
|
static const bool staffLoginOnly = true;
|
|
|
|
/// 关闭官方注册、找回密码。
|
|
static const bool hideRegisterAndReset = true;
|
|
|
|
/// 关闭发现页 / 工作台 Tab。
|
|
static const bool hideDiscover = true;
|
|
|
|
/// 品牌迁移未取得 AGPL 书面结论前保持 false:保留 OpenIM 标识。
|
|
static const bool brandMigration = false;
|
|
|
|
/// 安卓语音通话另阶段迁移;本阶段不接入 LiveKit。
|
|
static const bool livekitCall = false;
|
|
}
|