silverstripe-framework/tests/php/Security/BasicAuthTest/ControllerSecuredWithoutPermission.php
2023-01-20 17:05:41 +13:00

17 lines
412 B
PHP

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