silverstripe-framework/tests/php/Security/BasicAuthTest/ControllerNotSecured.php
2022-12-08 10:44:47 +13:00

20 lines
408 B
PHP

<?php
namespace SilverStripe\Security\Tests\BasicAuthTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
/**
* @skipUpgrade
*/
class ControllerNotSecured extends Controller implements TestOnly
{
protected $template = 'BlankPage';
public function Link($action = null)
{
return Controller::join_links('BasicAuthTest_ControllerNotSecured', $action, '/');
}
}