mirror of
https://github.com/strapi/strapi.git
synced 2025-07-10 02:22:21 +00:00
12 lines
287 B
JavaScript
12 lines
287 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const isAuthenticated = require('../../config/policies/isAuthenticated');
|
||
|
const permissions = require('../../config/policies/permissions');
|
||
|
const rateLimit = require('../../config/policies/rateLimit');
|
||
|
|
||
|
module.exports = {
|
||
|
isAuthenticated,
|
||
|
permissions,
|
||
|
rateLimit,
|
||
|
};
|