enhance: クライアント設定の初期値を変更できるように(簡易)
This commit is contained in:
parent
224bbd486f
commit
1005d17313
19 changed files with 440 additions and 33 deletions
|
|
@ -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,
|
||||
})
|
||||
|
|
|
|||
|
|
@ -315,6 +315,10 @@ export const packedMetaDetailedOnlySchema = {
|
|||
},
|
||||
},
|
||||
},
|
||||
defaultClientSettingOverrides: {
|
||||
type: 'string',
|
||||
optional: false, nullable: true,
|
||||
},
|
||||
proxyAccountName: {
|
||||
type: 'string',
|
||||
optional: false, nullable: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue