Add Role.mentionable

This commit is contained in:
Schuyler Cebulskie
2016-09-21 15:15:47 -04:00
parent 126865384e
commit 529d7207da
2 changed files with 7 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -63,6 +63,12 @@ class Role {
* @type {boolean}
*/
this.managed = data.managed;
/**
* Whether or not the role can be mentioned by anyone
* @type {boolean}
*/
this.mentionable = data.mentionable;
}
/**