0
0
Fork 0

feat: appendHashtag column

This commit is contained in:
아르페 2024-01-31 03:28:59 +09:00
parent 8507761272
commit 650af9c5ca
6 changed files with 36 additions and 2 deletions

View file

@ -22,4 +22,7 @@ export class UserSetting {
@IsOptional()
useRanking?: boolean;
@IsOptional()
appendHashtag?: boolean;
}

View file

@ -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,