Allow editing status quote policy (#35762)

This commit is contained in:
Echo 2025-08-14 17:04:32 +02:00 committed by GitHub
commit 651e51a82e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 591 additions and 16 deletions

View file

@ -12,7 +12,11 @@ export function isProduction() {
else return import.meta.env.PROD;
}
export type Features = 'modern_emojis';
export type Features =
| 'modern_emojis'
| 'outgoing_quotes'
| 'fasp'
| 'http_message_signatures';
export function isFeatureEnabled(feature: Features) {
return initialState?.features.includes(feature) ?? false;