30 lines
448 B
JavaScript
Raw Permalink Normal View History

'use strict';
module.exports = [
{
method: 'GET',
path: '/roles/:id',
handler: 'role.findOne',
},
{
method: 'GET',
path: '/roles',
handler: 'role.find',
},
{
method: 'POST',
path: '/roles',
handler: 'role.createRole',
},
{
method: 'PUT',
path: '/roles/:role',
handler: 'role.updateRole',
},
{
method: 'DELETE',
path: '/roles/:role',
handler: 'role.deleteRole',
},
];