add: achievement toggle

Closes #16
This commit is contained in:
Mar0xy 2023-09-29 00:57:38 +02:00
parent 0c7011bd02
commit fc00f08d5b
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
9 changed files with 45 additions and 1 deletions

View file

@ -449,6 +449,11 @@ export class MiMeta {
})
public enableIdenticonGeneration: boolean;
@Column('boolean', {
default: true,
})
public enableAchievements: boolean;
@Column('jsonb', {
default: { },
})