Fixes for testing now that we are using directorytree/ldaprecord-laravel

This commit is contained in:
Deon George 2020-09-13 23:48:28 +10:00
parent 15ff508429
commit 1ebdffa358
2 changed files with 1 additions and 19 deletions

View File

@ -43,12 +43,8 @@ PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
LDAP_LOGGING=true LDAP_HOST=ldap
LDAP_AUTO_CONNECT=false
LDAP_HOSTS=ldap
LDAP_PORT=389 LDAP_PORT=389
LDAP_BASE_DN="dc=Test" LDAP_BASE_DN="dc=Test"
LDAP_USERNAME= LDAP_USERNAME=
LDAP_PASSWORD= LDAP_PASSWORD=
LDAP_ACCOUNT_PREFIX=
LDAP_ACCOUNT_SUFFIX=

View File

@ -1,14 +0,0 @@
<?php
namespace App\Schema;
use Adldap\Schemas\OpenLDAP;
use App\LdapUser;
class Adldap extends OpenLDAP
{
public function userModel()
{
return LdapUser::class;
}
}