diff --git a/README.md b/README.md index 6e28c039..cde0852d 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ Support is known for these LDAP servers: - [X] OpenLDAP - [X] OpenDJ - [ ] Microsoft Active Directory +- [ ] 389 Directory Server If there is an LDAP server that you have that you would like to have supported, please open an issue to request it. You might need to provide access, provide a copy or instructions to get an environment for testing. If you have enabled diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index c47bce69..a2887d1e 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -386,7 +386,13 @@ class HomeController extends Controller 'dn' => $view ->with('dn',$key['dn']) ->with('o',$o) - ->with('page_actions',collect(['edit'=>TRUE])), + ->with('page_actions',collect([ + 'copy'=>FALSE, + 'create'=>FALSE, + 'delete'=>TRUE, + 'edit'=>TRUE, + 'export'=>TRUE, + ])), 'import' => $view, diff --git a/resources/views/frames/dn.blade.php b/resources/views/frames/dn.blade.php index 8a270f6e..931352ef 100644 --- a/resources/views/frames/dn.blade.php +++ b/resources/views/frames/dn.blade.php @@ -9,25 +9,30 @@