mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 20:11:47 +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',
|
||
|
},
|
||
|
];
|