0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/server/plugins/proxy.js

23 lines
618 B
JavaScript
Raw Normal View History

var _ = require('underscore');
function createProxy(ghost) {
return {
filters: {
register: ghost.registerFilter,
unregister: ghost.unregisterFilter
},
helpers: {
register: ghost.registerThemeHelper,
registerAsync: ghost.registerAsyncThemeHelper
},
api: {
posts: _.pick(ghost.api.posts, 'browse', 'read'),
tags: ghost.api.tags,
notifications: _.pick(ghost.api.notifications, 'add'),
settings: _.pick(ghost.api.settings, 'read')
}
};
}
module.exports = createProxy;