mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 22:45:47 +00:00
12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
'use strict';
|
|
|
|
const isAuthenticated = require('./isAuthenticated');
|
|
const permissions = require('./permissions');
|
|
const rateLimit = require('./rateLimit');
|
|
|
|
module.exports = {
|
|
isAuthenticated,
|
|
permissions,
|
|
rateLimit,
|
|
};
|