Update acl.md

This commit is contained in:
Pearl C 2023-02-17 18:24:44 +08:00 committed by GitHub
parent a0e85cda22
commit 1beb25da70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ acl.can('member', 'posts:edit'); // null
* Action对资源的操作`create`、`read`、`update`、`delete` 等。
* 策略 (`ACLAvailableStrategy`): 通常每个角色都有自己的权限策略,策略中定义了默认情况下的用户权限。
* 授权:在 `ACLRole` 实例中调用 `grantAction` 函数,为角色授予 `Action` 的访问权限。
* 鉴权:在 `ACL` 实例中调用 `can` 函数,函数返回结果为用户的鉴权结果。
* 鉴权:在 `ACL` 实例中调用 `can` 函数,函数返回结果为用户的鉴权结果。
## 类方法