16 lines
410 B
PHP
16 lines
410 B
PHP
<?php
|
||
|
||
namespace App\Controllers;
|
||
|
||
class Landing extends BaseController
|
||
{
|
||
public function index()
|
||
{
|
||
// Если пользователь уже залогинен, редиректим его сразу на выбор орги
|
||
if (session()->get('isLoggedIn')) {
|
||
return redirect()->to('/organizations');
|
||
}
|
||
|
||
return $this->renderTwig('landing/index');
|
||
}
|
||
} |