mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-27 18:52:14 +03:00
3f2258e95b
- changed cookieSession to session - added session.regenerate for login and logout - added bookshelf session store - added session table to database - added import for databaseVersion 001 - added grunt task test-api - cleanup of gruntfile to start express when needed only - moved api tests to functional tests
32 lines
772 B
JavaScript
32 lines
772 B
JavaScript
var ghostBookshelf = require('./base'),
|
|
Session,
|
|
Sessions;
|
|
|
|
Session = ghostBookshelf.Model.extend({
|
|
|
|
tableName: 'sessions',
|
|
|
|
permittedAttributes: ['id', 'expires', 'sess'],
|
|
|
|
saving: function () {
|
|
// Remove any properties which don't belong on the session model
|
|
this.attributes = this.pick(this.permittedAttributes);
|
|
}
|
|
}, {
|
|
destroyAll: function (options) {
|
|
options = options || {};
|
|
return ghostBookshelf.Collection.forge([], {model: this}).fetch().
|
|
then(function (collection) {
|
|
collection.invokeThen('destroy', options);
|
|
});
|
|
}
|
|
});
|
|
|
|
Sessions = ghostBookshelf.Collection.extend({
|
|
model: Session
|
|
});
|
|
|
|
module.exports = {
|
|
Session: Session,
|
|
Sessions: Sessions
|
|
}; |