Add files and updates necessary to manage new layout.

This commit is contained in:
James Cole
2022-02-27 10:04:08 +01:00
parent 3f61b6d707
commit aa7d4a610b
9 changed files with 106 additions and 45 deletions

View File

@@ -26,6 +26,7 @@ use Adldap\Laravel\Middleware\WindowsAuthenticate;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
use Laravel\Passport\Passport;
use Laravel\Sanctum\Sanctum;
use URL;
/**
@@ -48,6 +49,7 @@ class AppServiceProvider extends ServiceProvider
if (config('ldap_auth.identifiers.windows.enabled', false)) {
$this->app['router']->pushMiddlewareToGroup('web', WindowsAuthenticate::class);
}
Sanctum::ignoreMigrations();
}
/**