save
This commit is contained in:
parent
5782855513
commit
776099e197
@ -19,13 +19,13 @@ class AccountController extends Crud
|
|||||||
* 不需要登录的方法
|
* 不需要登录的方法
|
||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
public $noNeedLogin = ['login', 'logout', 'captcha'];
|
protected $noNeedLogin = ['login', 'logout', 'captcha'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 不需要鉴权的方法
|
* 不需要鉴权的方法
|
||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
public $noNeedAuth = ['info'];
|
protected $noNeedAuth = ['info'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Admin
|
* @var Admin
|
||||||
|
@ -17,7 +17,7 @@ class ConfigController extends Base
|
|||||||
* 不需要验证权限的方法
|
* 不需要验证权限的方法
|
||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
public $noNeedAuth = ['get'];
|
protected $noNeedAuth = ['get'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 账户设置
|
* 账户设置
|
||||||
|
@ -15,7 +15,7 @@ class DictController extends Base
|
|||||||
/**
|
/**
|
||||||
* 不需要授权的方法
|
* 不需要授权的方法
|
||||||
*/
|
*/
|
||||||
public $noNeedAuth = ['get'];
|
protected $noNeedAuth = ['get'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 浏览
|
* 浏览
|
||||||
|
@ -19,7 +19,7 @@ class InstallController extends Base
|
|||||||
* 不需要登录的方法
|
* 不需要登录的方法
|
||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
public $noNeedLogin = ['step1', 'step2'];
|
protected $noNeedLogin = ['step1', 'step2'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设置数据库
|
* 设置数据库
|
||||||
|
@ -19,7 +19,7 @@ class RuleController extends Crud
|
|||||||
*
|
*
|
||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
public $noNeedAuth = ['get', 'permissionCodes'];
|
protected $noNeedAuth = ['get', 'permissionCodes'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var Rule
|
* @var Rule
|
||||||
|
@ -19,7 +19,7 @@ class TableController extends Base
|
|||||||
* 不需要鉴权的方法
|
* 不需要鉴权的方法
|
||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
public $noNeedAuth = ['types'];
|
protected $noNeedAuth = ['types'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 浏览
|
* 浏览
|
||||||
|
Loading…
Reference in New Issue
Block a user