feat: available for disabling marketplace(offline env)

This commit is contained in:
Junyan Qin
2025-08-28 23:04:21 +08:00
parent d7fc5283f7
commit 91959527a4
5 changed files with 21 additions and 12 deletions
+1
View File
@@ -212,6 +212,7 @@ export interface ApiRespSystemInfo {
debug: boolean;
version: string;
cloud_service_url: string;
enable_marketplace: boolean;
}
export interface ApiRespAsyncTasks {
+1
View File
@@ -6,6 +6,7 @@ import { ApiRespSystemInfo } from '@/app/infra/entities/api';
export let systemInfo: ApiRespSystemInfo = {
debug: false,
version: '',
enable_marketplace: true,
cloud_service_url: '',
};