mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 00:51:17 +00:00
12 lines
327 B
JavaScript
12 lines
327 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const hasDraftAndPublish = require('../../config/policies/has-draft-and-publish');
|
||
|
const hasPermissions = require('../../config/policies/hasPermissions');
|
||
|
const routing = require('../../config/policies/routing');
|
||
|
|
||
|
module.exports = {
|
||
|
'has-draft-and-publish': hasDraftAndPublish,
|
||
|
hasPermissions,
|
||
|
routing,
|
||
|
};
|