enhance: クライアント設定の初期値を変更できるように(簡易)

This commit is contained in:
kakkokari-gtyih 2024-11-03 01:32:37 +09:00
parent 224bbd486f
commit 1005d17313
19 changed files with 440 additions and 33 deletions

View file

@ -409,6 +409,12 @@ export class MiMeta {
})
public defaultDarkTheme: string | null;
@Column('varchar', {
length: 8192,
nullable: true,
})
public defaultClientSettingOverrides: string | null;
@Column('boolean', {
default: false,
})

View file

@ -315,6 +315,10 @@ export const packedMetaDetailedOnlySchema = {
},
},
},
defaultClientSettingOverrides: {
type: 'string',
optional: false, nullable: true,
},
proxyAccountName: {
type: 'string',
optional: false, nullable: true,