mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
15 lines
360 B
PHP
15 lines
360 B
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Controller\OAuth;
|
|
|
|
use Combodo\iTop\Application\TwigBase\Controller\Controller;
|
|
use utils;
|
|
|
|
class OAuthLandingController extends Controller
|
|
{
|
|
public function OperationLanding()
|
|
{
|
|
$this->AddLinkedScript(utils::GetAbsoluteUrlAppRoot().'/js/jquery.min.js');
|
|
$this->DisplayPage([], null, static::ENUM_PAGE_TYPE_BASIC_HTML);
|
|
}
|
|
} |