2013-09-22 17:20:08 -05:00
|
|
|
var ghostBookshelf = require('./base'),
|
2013-09-24 05:46:30 -05:00
|
|
|
User = require('./user').User,
|
|
|
|
Role = require('./role').Role,
|
2014-02-19 08:57:26 -05:00
|
|
|
|
2013-06-25 06:43:15 -05:00
|
|
|
Permission,
|
|
|
|
Permissions;
|
2013-06-04 22:47:11 -05:00
|
|
|
|
2013-09-22 17:20:08 -05:00
|
|
|
Permission = ghostBookshelf.Model.extend({
|
2013-09-14 14:01:46 -05:00
|
|
|
|
2013-06-25 06:43:15 -05:00
|
|
|
tableName: 'permissions',
|
2013-06-04 22:47:11 -05:00
|
|
|
|
2013-06-25 06:43:15 -05:00
|
|
|
roles: function () {
|
|
|
|
return this.belongsToMany(Role);
|
|
|
|
},
|
2013-06-04 22:47:11 -05:00
|
|
|
|
2013-06-25 06:43:15 -05:00
|
|
|
users: function () {
|
|
|
|
return this.belongsToMany(User);
|
|
|
|
}
|
|
|
|
});
|
2013-06-04 22:47:11 -05:00
|
|
|
|
2013-09-22 17:20:08 -05:00
|
|
|
Permissions = ghostBookshelf.Collection.extend({
|
2013-06-25 06:43:15 -05:00
|
|
|
model: Permission
|
|
|
|
});
|
2013-06-04 22:47:11 -05:00
|
|
|
|
2013-06-25 06:43:15 -05:00
|
|
|
module.exports = {
|
|
|
|
Permission: Permission,
|
|
|
|
Permissions: Permissions
|
2014-02-26 21:44:09 -05:00
|
|
|
};
|