You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CoreID/app/ldap/routes/groups.routes.js

29 lines
378 B

const groups_routes = {
prefix: false, // false | string
middleware: [
'Logger'
],
search: {
'ou=groups': [
'ldap_middleware::BindUser',
'ldap_controller::Groups.search_groups',
],
},
bind: {},
add: {},
del: {},
modify: {},
compare: {},
}
module.exports = exports = groups_routes