2018-10-05 01:50:45 +03:00
|
|
|
const shared = require('../shared');
|
|
|
|
const localUtils = require('./utils');
|
|
|
|
|
2018-10-03 16:45:42 +03:00
|
|
|
module.exports = {
|
2018-10-05 01:50:45 +03:00
|
|
|
get http() {
|
|
|
|
return shared.http;
|
|
|
|
},
|
|
|
|
|
|
|
|
// @TODO: transform
|
2018-10-03 16:45:42 +03:00
|
|
|
get session() {
|
|
|
|
return require('./session');
|
2018-10-05 01:50:45 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
get pages() {
|
|
|
|
return shared.pipeline(require('./pages'), localUtils);
|
2018-10-09 17:00:08 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
get roles() {
|
|
|
|
return shared.pipeline(require('./roles'), localUtils);
|
2018-10-12 15:25:20 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
get slugs() {
|
|
|
|
return shared.pipeline(require('./slugs'), localUtils);
|
2018-10-11 21:52:38 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
get webhooks() {
|
|
|
|
return shared.pipeline(require('./webhooks'), localUtils);
|
2018-10-10 17:34:16 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
get posts() {
|
|
|
|
return shared.pipeline(require('./posts'), localUtils);
|
2018-10-12 20:44:02 +03:00
|
|
|
},
|
|
|
|
|
2018-10-12 20:44:06 +03:00
|
|
|
get invites() {
|
|
|
|
return shared.pipeline(require('./invites'), localUtils);
|
|
|
|
},
|
|
|
|
|
2018-10-12 20:44:05 +03:00
|
|
|
get mail() {
|
|
|
|
return shared.pipeline(require('./mail'), localUtils);
|
|
|
|
},
|
|
|
|
|
2018-10-12 20:44:03 +03:00
|
|
|
get notifications() {
|
|
|
|
return shared.pipeline(require('./notifications'), localUtils);
|
|
|
|
},
|
|
|
|
|
2018-10-12 20:44:02 +03:00
|
|
|
get settings() {
|
|
|
|
return shared.pipeline(require('./settings'), localUtils);
|
2018-10-11 19:09:01 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
get subscribers() {
|
|
|
|
return shared.pipeline(require('./subscribers'), localUtils);
|
2018-10-12 23:41:39 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
get upload() {
|
|
|
|
return shared.pipeline(require('./upload'), localUtils);
|
2018-10-03 16:45:42 +03:00
|
|
|
}
|
|
|
|
};
|