2014-07-14 16:29:45 +04:00
|
|
|
var ghostBookshelf = require('./base'),
|
2015-06-14 18:58:49 +03:00
|
|
|
Basetoken = require('./base/token'),
|
2014-06-30 16:58:10 +04:00
|
|
|
|
|
|
|
Refreshtoken,
|
|
|
|
Refreshtokens;
|
|
|
|
|
2014-07-14 16:29:45 +04:00
|
|
|
Refreshtoken = Basetoken.extend({
|
|
|
|
tableName: 'refreshtokens'
|
2014-06-30 16:58:10 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
Refreshtokens = ghostBookshelf.Collection.extend({
|
|
|
|
model: Refreshtoken
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = {
|
2014-07-13 15:17:18 +04:00
|
|
|
Refreshtoken: ghostBookshelf.model('Refreshtoken', Refreshtoken),
|
|
|
|
Refreshtokens: ghostBookshelf.collection('Refreshtokens', Refreshtokens)
|
2014-09-10 08:06:24 +04:00
|
|
|
};
|