Fix caching issue for '/' route
parent
6ed891fc04
commit
9232513831
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Engelsystem\Controllers;
|
||||||
|
|
||||||
|
use Engelsystem\Http\Exceptions\HttpTemporaryRedirect;
|
||||||
|
|
||||||
|
class HomeController extends BaseController
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @throws HttpTemporaryRedirect
|
||||||
|
*/
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
throw new HttpTemporaryRedirect(auth()->user() ? config('home_site') : 'login');
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue