インスタンス運営者がピン留めユーザーを設定できるように

Related #4892
This commit is contained in:
syuilo 2019-05-10 17:30:28 +09:00
parent 756e4eaeec
commit 8e6da3a0d9
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
8 changed files with 81 additions and 2 deletions

View file

@ -69,6 +69,11 @@ export class Meta {
})
public langs: string[];
@Column('varchar', {
length: 256, array: true, default: '{}'
})
public pinnedUsers: string[];
@Column('varchar', {
length: 256, array: true, default: '{}'
})