3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 10:25:38 +00:00

Feature/ch16172/adding other fields to ldap sync settings (#9416)

* new branch, added manager as an additional field. Currently having DB issues

* WIP DB Issue with eloquent

* added department to LDAP sync

* removed unused variables
This commit is contained in:
Godfrey Martinez
2021-04-14 10:17:57 -07:00
committed by GitHub
parent ce1d3284b0
commit 246cc0eaa8
8 changed files with 429 additions and 552 deletions

View File

@ -946,6 +946,7 @@ class SettingsController extends Controller
$setting->ldap_phone_field = $request->input('ldap_phone');
$setting->ldap_jobtitle = $request->input('ldap_jobtitle');
$setting->ldap_country = $request->input('ldap_country');
$setting->ldap_dept = $request->input('ldap_dept');
}