修复创建系统应用

This commit is contained in:
whyour
2025-01-05 22:03:41 +08:00
parent fa79de3f05
commit 3f775a0e6c
2 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export interface AppToken {
expiration: number;
}
export type AppScope = 'envs' | 'crons' | 'configs' | 'scripts' | 'logs';
export type AppScope = 'envs' | 'crons' | 'configs' | 'scripts' | 'logs' | 'system';
export interface AppInstance extends Model<App, App>, App {}
export const AppModel = sequelize.define<AppInstance>('App', {