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

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