mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
16 lines
338 B
PHP
16 lines
338 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Control\Tests\ControllerTest;
|
|
|
|
use SilverStripe\Control\Tests\ControllerTest;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class AccessWildcardSecuredController extends ControllerTest\AccessBaseController implements TestOnly
|
|
{
|
|
|
|
private static $allowed_actions = array(
|
|
"*" => "ADMIN", // should throw exception
|
|
);
|
|
|
|
}
|