mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-19 16:07:41 +02:00
A user gets now redirected to /setup in case he is not logged in, the token file exists and no config.ini was found. refs #7163
26 lines
479 B
PHP
26 lines
479 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
use Icinga\Web\Controller\ActionController;
|
|
|
|
class SetupController extends ActionController
|
|
{
|
|
/**
|
|
* Whether the controller requires the user to be authenticated
|
|
*
|
|
* FALSE as the wizard uses token authentication
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $requiresAuthentication = false;
|
|
|
|
/**
|
|
* Show the web wizard
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
|
|
}
|
|
}
|