mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 12:02:10 +00:00
21 lines
313 B
JavaScript
21 lines
313 B
JavaScript
'use strict';
|
|
|
|
module.exports = [
|
|
{
|
|
method: 'GET',
|
|
path: '/permissions',
|
|
handler: 'permissions.getPermissions',
|
|
},
|
|
{
|
|
method: 'GET',
|
|
path: '/policies',
|
|
handler: 'permissions.getPolicies',
|
|
},
|
|
|
|
{
|
|
method: 'GET',
|
|
path: '/routes',
|
|
handler: 'permissions.getRoutes',
|
|
},
|
|
];
|