mirror of
https://github.com/strapi/strapi.git
synced 2025-09-08 16:16:21 +00:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
'use strict';
|
|
|
|
const hasPermissions = require('../../config/policies/hasPermissions');
|
|
const isAuthenticatedAdmin = require('../../config/policies/isAuthenticatedAdmin');
|
|
|
|
module.exports = {
|
|
hasPermissions,
|
|
isAuthenticatedAdmin,
|
|
};
|