Ghost/core/server/models/plugins/index.js
kirrg001 fe461da110 Deleted bookshelf access plugin
refs #9127

- permission checks can happen everywhere in the code base
  - we would like to create a context class
- global access to `options.context.is(...)`
- please read more about the access plugin in #9127 section "Model layer and the access plugin".
- removed the plugin and use direct context checks
2018-01-25 17:54:28 +01:00

7 lines
180 B
JavaScript

module.exports = {
filter: require('./filter'),
includeCount: require('./include-count'),
pagination: require('./pagination'),
collision: require('./collision')
};