wip
This commit is contained in:
parent
4aa6748387
commit
6cdb3600e2
|
@ -65,8 +65,8 @@ export class Notification {
|
|||
* app - アプリ通知
|
||||
*/
|
||||
@Index()
|
||||
@Column('enum', {
|
||||
enum: notificationTypes,
|
||||
@Column('varchar', {
|
||||
length: 64,
|
||||
comment: 'The type of the Notification.',
|
||||
})
|
||||
public type: typeof notificationTypes[number];
|
||||
|
|
|
@ -201,13 +201,7 @@ export class UserProfile {
|
|||
})
|
||||
public mutedInstances: string[];
|
||||
|
||||
@Column('enum', {
|
||||
enum: [
|
||||
...notificationTypes,
|
||||
// マイグレーションで削除が困難なので古いenumは残しておく
|
||||
...obsoleteNotificationTypes,
|
||||
],
|
||||
array: true,
|
||||
@Column('jsonb', {
|
||||
default: [],
|
||||
})
|
||||
public mutingNotificationTypes: typeof notificationTypes[number][];
|
||||
|
|
Loading…
Reference in New Issue