2014-06-30 16:58:10 +04:00
|
|
|
var ghostBookshelf = require('./base'),
|
|
|
|
|
|
|
|
Client,
|
|
|
|
Clients;
|
|
|
|
|
|
|
|
Client = ghostBookshelf.Model.extend({
|
2015-08-18 16:05:25 +03:00
|
|
|
tableName: 'clients',
|
|
|
|
trustedDomains: function trustedDomains() {
|
|
|
|
return this.hasMany('ClientTrustedDomain', 'client_id');
|
|
|
|
}
|
2015-10-22 16:28:47 +03:00
|
|
|
}, {
|
|
|
|
/**
|
|
|
|
* Returns an array of keys permitted in a method's `options` hash, depending on the current method.
|
|
|
|
* @param {String} methodName The name of the method to check valid options for.
|
|
|
|
* @return {Array} Keys allowed in the `options` hash of the model's method.
|
|
|
|
*/
|
|
|
|
permittedOptions: function permittedOptions(methodName) {
|
|
|
|
var options = ghostBookshelf.Model.permittedOptions(),
|
|
|
|
|
|
|
|
// whitelists for the `options` hash argument on methods, by method name.
|
|
|
|
// these are the only options that can be passed to Bookshelf / Knex.
|
|
|
|
validOptions = {
|
|
|
|
findOne: ['withRelated']
|
|
|
|
};
|
|
|
|
|
|
|
|
if (validOptions[methodName]) {
|
|
|
|
options = options.concat(validOptions[methodName]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
2014-06-30 16:58:10 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
Clients = ghostBookshelf.Collection.extend({
|
|
|
|
model: Client
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = {
|
2014-07-13 15:17:18 +04:00
|
|
|
Client: ghostBookshelf.model('Client', Client),
|
|
|
|
Clients: ghostBookshelf.collection('Clients', Clients)
|
2014-09-10 08:06:24 +04:00
|
|
|
};
|