From 93947b09c544641ff86b5e56aed44f6428416237 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 11 Dec 2018 15:18:30 -0800 Subject: [PATCH] Small fix for #6484 - corrected LDAP sync command name --- app/Http/Controllers/Users/LDAPImportController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Users/LDAPImportController.php b/app/Http/Controllers/Users/LDAPImportController.php index a5774f478a..5627adb7eb 100644 --- a/app/Http/Controllers/Users/LDAPImportController.php +++ b/app/Http/Controllers/Users/LDAPImportController.php @@ -65,7 +65,7 @@ class LDAPImportController extends Controller { // Call Artisan LDAP import command. $location_id = $request->input('location_id'); - Artisan::call('snipeit:ldapAd-sync', ['--location_id' => $location_id, '--json_summary' => true]); + Artisan::call('snipeit:ldap-sync', ['--location_id' => $location_id, '--json_summary' => true]); // Collect and parse JSON summary. $ldap_results_json = Artisan::output();