mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-29 03:33:17 +01:00
33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Events\ScanForNewReleaseCalled;
|
|
use App\Facades\Settings;
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
class SinglePageController extends Controller
|
|
{
|
|
/**
|
|
* return the main view
|
|
*
|
|
* @return \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory
|
|
*/
|
|
public function index()
|
|
{
|
|
event(new ScanForNewReleaseCalled());
|
|
|
|
return view('landing')->with([
|
|
'appSettings' => Settings::all()->toJson(),
|
|
'appConfig' => collect([
|
|
'proxyAuth' => config('auth.defaults.guard') === 'reverse-proxy-guard' ? true : false,
|
|
'proxyLogoutUrl' => config('2fauth.config.proxyLogoutUrl') ? config('2fauth.config.proxyLogoutUrl') : false,
|
|
])->toJson(),
|
|
'lang' => App::currentLocale(),
|
|
'isDemoApp' => config('2fauth.config.isDemoApp') ? 'true' : 'false',
|
|
'isTestingApp' => config('2fauth.config.isTestingApp') ? 'true' : 'false',
|
|
'locales' => collect(config('2fauth.locales'))->toJson(), /** @phpstan-ignore-line */
|
|
]);
|
|
}
|
|
}
|