Browse Source

Merge pull request #3983 from sitawit/patch-1

Update a tip and an example
tags/2.0.0-rc
Alexander Makarov 10 years ago
parent
commit
06be8f7a8a
  1. 4
      docs/guide/security-authorization.md

4
docs/guide/security-authorization.md

@ -202,6 +202,9 @@ return [
The `authManager` can now be accessed via `\Yii::$app->authManager`.
> Tip: By default, [[yii\rbac\PhpManager]] stores RBAC data in the file `@app/data/rbac.php`.
Sometime you need to create this file manually.
### Building Authorization Data
@ -222,6 +225,7 @@ command that will initialize authorization data once via APIs offered by `authMa
<?php
namespace app\commands;
use Yii;
use yii\console\Controller;
class RbacController extends Controller

Loading…
Cancel
Save