garrettmills
d6e4ea2e56
All checks were successful
continuous-integration/drone/push Build is passing
106 lines
3.7 KiB
JavaScript
106 lines
3.7 KiB
JavaScript
const ldap_routes = {
|
|
prefix: '/api/v1/ldap',
|
|
|
|
middleware: [
|
|
'auth:APIRoute',
|
|
],
|
|
|
|
get: {
|
|
'/clients': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:list' }],
|
|
'controller::api:v1:LDAP.get_clients',
|
|
],
|
|
'/clients/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:get' }],
|
|
'controller::api:v1:LDAP.get_client',
|
|
],
|
|
'/groups': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:list' }],
|
|
'controller::api:v1:LDAP.get_groups',
|
|
],
|
|
'/groups/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:get' }],
|
|
'controller::api:v1:LDAP.get_group',
|
|
],
|
|
'/machines': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machines:list' }],
|
|
'controller::api:v1:LDAP.get_machines',
|
|
],
|
|
'/machines/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machines:get' }],
|
|
'controller::api:v1:LDAP.get_machine',
|
|
],
|
|
'/machine-groups': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machine_groups:list' }],
|
|
'controller::api:v1:LDAP.get_machine_groups',
|
|
],
|
|
'/machine-groups/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machine_groups:get' }],
|
|
'controller::api:v1:LDAP.get_machine_group',
|
|
],
|
|
'/config': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:config:get' }],
|
|
'controller::api:v1:LDAP.get_config',
|
|
],
|
|
},
|
|
|
|
post: {
|
|
'/clients': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:create' }],
|
|
'controller::api:v1:LDAP.create_client',
|
|
],
|
|
'/groups': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:create' }],
|
|
'controller::api:v1:LDAP.create_group',
|
|
],
|
|
'/machines': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machines:create' }],
|
|
'controller::api:v1:LDAP.create_machine',
|
|
],
|
|
'/machine-groups': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machine_groups:create' }],
|
|
'controller::api:v1:LDAP.create_machine_group',
|
|
],
|
|
},
|
|
|
|
patch: {
|
|
'/clients/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:update' }],
|
|
'controller::api:v1:LDAP.update_client',
|
|
],
|
|
'/groups/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:update' }],
|
|
'controller::api:v1:LDAP.update_group',
|
|
],
|
|
'/machines/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machines:update' }],
|
|
'controller::api:v1:LDAP.update_machine',
|
|
],
|
|
'/machine-groups/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machine_groups:update' }],
|
|
'controller::api:v1:LDAP.update_machine_group',
|
|
],
|
|
},
|
|
|
|
delete: {
|
|
'/clients/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:delete' }],
|
|
'controller::api:v1:LDAP.delete_client',
|
|
],
|
|
'/groups/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:delete' }],
|
|
'controller::api:v1:LDAP.delete_group',
|
|
],
|
|
'/machines/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machines:delete' }],
|
|
'controller::api:v1:LDAP.delete_machine',
|
|
],
|
|
'/machine-groups/:id': [
|
|
['middleware::api:Permission', { check: 'v1:ldap:machine_groups:delete' }],
|
|
'controller::api:v1:LDAP.delete_machine_group',
|
|
],
|
|
},
|
|
}
|
|
|
|
module.exports = exports = ldap_routes
|