Add ability to manage computers and computer groups from web interface
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-03-15 16:10:23 -05:00
parent 718414d924
commit d6e4ea2e56
10 changed files with 636 additions and 5 deletions

View File

@@ -37,6 +37,14 @@ class LDAPServerUnit extends Unit {
return this.build_dn(this.config.schema.group_base)
}
machine_dn() {
return this.build_dn(this.config.schema.machine_base)
}
machine_group_dn() {
return this.build_dn(this.config.schema.machine_group_base)
}
sudo_dn() {
return this.build_dn(this.config.schema.sudo_base)
}