Make admin open in a new window

This commit is contained in:
Toby Zerner
2015-07-08 10:51:16 +09:30
parent 42f1fa1272
commit a74623c718
2 changed files with 8 additions and 2 deletions

View File

@ -7,4 +7,8 @@ Group.prototype.namePlural = Model.attribute('namePlural');
Group.prototype.color = Model.attribute('color');
Group.prototype.icon = Model.attribute('icon');
Group.ADMINISTRATOR_ID = 1;
Group.GUEST_ID = 2;
Group.MEMBER_ID = 3;
export default Group;