feat(samba): refs #5770 #5770 Add new field GroupDn in sambaConfig

This commit is contained in:
Javier Segarra 2024-05-08 07:13:56 +02:00
parent 91f73b916f
commit e2e4e550d7
3 changed files with 8 additions and 2 deletions

View File

@ -3792,5 +3792,5 @@ INSERT INTO vn.workCenter (id, name, payrollCenterFk, counter, warehouseFk, stre
VALUES(100, 'workCenterOne', 1, NULL, 1, 'gotham', NULL, NULL); VALUES(100, 'workCenterOne', 1, NULL, 1, 'gotham', NULL, NULL);
INSERT INTO account.sambaConfig (id,adDomain,adController,adUser,adPassword,verifyCert,userDn) VALUES INSERT INTO account.sambaConfig (id,adDomain,adController,adUser,adPassword,verifyCert,userDn,groupDn) VALUES
(1,'verdnatura.es','192.168.56.102','Administrator','V3rdn4tur4$',0,'ou=users'); (1,'verdnatura.es','192.168.56.102','Administrator','V3rdn4tur4$',0,'ou=VnUsers','ou=VnGroups');

View File

@ -0,0 +1,2 @@
-- Place your SQL code here
ALTER TABLE account.sambaConfig ADD groupDn varchar(255) NULL COMMENT 'The base DN for groups';

View File

@ -32,6 +32,10 @@
"type": "string", "type": "string",
"required": true "required": true
}, },
"groupDn": {
"type": "string",
"required": true
},
"verifyCert": { "verifyCert": {
"type": "boolean" "type": "boolean"
} }