chore (backend): remove (technically) incorrect TypeORM decorator field
This commit is contained in:
parent
d2dbfb37c7
commit
6b008c651a
1 changed files with 1 additions and 1 deletions
|
@ -179,11 +179,11 @@ export class DriveFile {
|
||||||
})
|
})
|
||||||
public isSensitive: boolean;
|
public isSensitive: boolean;
|
||||||
|
|
||||||
|
// Hint for what this file is used for
|
||||||
@Column({
|
@Column({
|
||||||
type: "enum",
|
type: "enum",
|
||||||
enum: ["userAvatar", "userBanner"],
|
enum: ["userAvatar", "userBanner"],
|
||||||
nullable: true,
|
nullable: true,
|
||||||
comment: "Hint for what the file is used for.",
|
|
||||||
})
|
})
|
||||||
public usageHint: DriveFileUsageHint;
|
public usageHint: DriveFileUsageHint;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue