fanatic/app/Http/Middleware/Authenticate.php

22 lines
485 B
PHP
Raw Permalink Normal View History

2022-04-22 20:01:30 -07:00
<?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string|null
*/
protected function redirectTo($request)
{
if (! $request->expectsJson()) {
2022-04-24 17:44:39 -07:00
return route('admin.sessions.create');
2022-04-22 20:01:30 -07:00
}
}
}