mirror of
https://github.com/strapi/strapi.git
synced 2025-12-29 16:16:20 +00:00
21 lines
413 B
JSON
21 lines
413 B
JSON
{
|
|
"routes": [
|
|
{
|
|
"method": "GET",
|
|
"path": "/custom-route",
|
|
"handler": "UsersPermissions.customRoute",
|
|
"config": {
|
|
"policies": ["plugins.users-permissions.customPolicy"]
|
|
}
|
|
},
|
|
{
|
|
"method": "GET",
|
|
"path": "/",
|
|
"handler": "UsersPermissions.index",
|
|
"config": {
|
|
"policies": ["plugins.users-permissions.customPolicy"]
|
|
}
|
|
}
|
|
]
|
|
}
|