2013-07-27 23:41:10 +04:00
|
|
|
var migrations = require('../data/migration');
|
2013-06-01 18:47:41 +04:00
|
|
|
|
2013-06-25 15:43:15 +04:00
|
|
|
module.exports = {
|
|
|
|
Post: require('./post').Post,
|
|
|
|
User: require('./user').User,
|
|
|
|
Role: require('./role').Role,
|
|
|
|
Permission: require('./permission').Permission,
|
|
|
|
Settings: require('./settings').Settings,
|
2013-08-21 16:55:58 +04:00
|
|
|
Tag: require('./tag').Tag,
|
2013-06-25 15:43:15 +04:00
|
|
|
init: function () {
|
2013-07-27 23:41:10 +04:00
|
|
|
return migrations.init();
|
2013-08-03 19:11:16 +04:00
|
|
|
},
|
|
|
|
reset: function () {
|
|
|
|
return migrations.reset().then(function () {
|
|
|
|
return migrations.init();
|
|
|
|
});
|
2013-08-26 23:44:19 +04:00
|
|
|
},
|
|
|
|
isPost: function (jsonData) {
|
|
|
|
return jsonData.hasOwnProperty("content") && jsonData.hasOwnProperty("content_raw")
|
|
|
|
&& jsonData.hasOwnProperty("title") && jsonData.hasOwnProperty("slug");
|
2013-06-25 15:43:15 +04:00
|
|
|
}
|
|
|
|
};
|