feat: add ENABLE_COMMUNITY_SHARING

This commit is contained in:
Jun Siang Cheah
2024-05-26 17:10:25 +01:00
parent 6c5f5fe368
commit 1235714914
5 changed files with 28 additions and 16 deletions

View File

@@ -133,11 +133,12 @@ type Config = {
default_models: string[];
default_prompt_suggestions: PromptSuggestion[];
feature_flags: {
auth?: boolean;
enable_signup?: boolean;
auth_trusted_header?: boolean;
enable_image_generation?: boolean;
enable_admin_export?: boolean;
auth: boolean;
enable_signup: boolean;
auth_trusted_header: boolean;
enable_image_generation: boolean;
enable_admin_export: boolean;
enable_community_sharing: boolean;
};
};