Remove debug statement.

This commit is contained in:
James Cole 2020-08-17 07:08:54 +02:00
parent 00683ff1bc
commit ce3c1cccc3
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -82,7 +82,6 @@ class ProfileController extends Controller
$loginProvider = config('firefly.login_provider');
$authGuard = config('firefly.authentication_guard');
$this->externalIdentity = 'eloquent' !== $loginProvider || 'web' !== $authGuard;
$this->externalIdentity = true;
$this->middleware(IsDemoUser::class)->except(['index']);
}