feat: appendHashtag column
This commit is contained in:
parent
8507761272
commit
650af9c5ca
6 changed files with 36 additions and 2 deletions
|
@ -22,4 +22,7 @@ export class UserSetting {
|
|||
|
||||
@IsOptional()
|
||||
useRanking?: boolean;
|
||||
|
||||
@IsOptional()
|
||||
appendHashtag?: boolean;
|
||||
}
|
||||
|
|
|
@ -99,6 +99,12 @@ export class User implements IUser {
|
|||
})
|
||||
public useRanking: boolean;
|
||||
|
||||
@Column({
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
public appendHashtag: boolean;
|
||||
|
||||
@Column({
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue