feat: instance default theme
This commit is contained in:
parent
bc9157a03b
commit
ba4ef23d6b
10 changed files with 93 additions and 5 deletions
|
@ -344,6 +344,20 @@ export class Meta {
|
|||
})
|
||||
public feedbackUrl: string | null;
|
||||
|
||||
@Column('varchar', {
|
||||
length: 8192,
|
||||
default: null,
|
||||
nullable: true,
|
||||
})
|
||||
public defaultLightTheme: string | null;
|
||||
|
||||
@Column('varchar', {
|
||||
length: 8192,
|
||||
default: null,
|
||||
nullable: true,
|
||||
})
|
||||
public defaultDarkTheme: string | null;
|
||||
|
||||
@Column('boolean', {
|
||||
default: false,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue