1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 04:32:35 +01:00

Role flags

This commit is contained in:
Madeline 2023-04-04 00:17:02 +10:00
parent 3e9e8aac3b
commit 0095b65050
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
2 changed files with 4 additions and 0 deletions

View File

@ -353,6 +353,7 @@ export class Guild extends BaseClass {
position: 0,
icon: undefined,
unicode_emoji: undefined,
flags: 0, // TODO?
}).save();
if (!body.channels || !body.channels.length)

View File

@ -66,4 +66,7 @@ export class Role extends BaseClass {
integration_id?: string;
premium_subscriber?: boolean;
};
@Column()
flags: number;
}