yii2mod / yii2-rbac

RBAC Manager for Yii 2
MIT License
143 stars 58 forks source link

Can I add my route to the list of routes? #30

Open LordKino opened 6 years ago

LordKino commented 6 years ago

In the configuration file, I can specify the route:

'urlManager' => [ 'showScriptName' => false, 'enablePrettyUrl' => true, 'rules' => [ 'user/<user_id:\d+>' => 'user/', 'user/<user_id:\d+>/messages' => 'messages/', ]...

How to add them to the list of yii2mod routes?

ihorchepurnyi commented 6 years ago

Hi, you can add some route via admin panel. Did you try it?

LordKino commented 6 years ago

I do not see fields for adding a route in the interface: https://ibb.co/jdii29 And in the view there is no input field: `<?php use yii\helpers\Html; use yii\helpers\Json; use yii2mod\rbac\RbacRouteAsset;

RbacRouteAsset::register($this);

/ @var $this yii\web\View / / @var $routes array /

$this->title = Yii::t('yii2mod.rbac', 'Routes'); $this->params['breadcrumbs'][] = $this->title; $this->render('/layouts/_sidebar');

echo Html::encode($this->title);

echo Html::a(Yii::t('yii2mod.rbac', 'Refresh'), ['refresh'], [ 'class' => 'btn btn-primary', 'id' => 'btn-refresh', ]); echo $this->render('../_dualListBox', [ 'opts' => Json::htmlEncode([ 'items' => $routes, ]), 'assignUrl' => ['assign'], 'removeUrl' => ['remove'], ]); ?> `

LordKino commented 6 years ago

Which route I can use in the admin panel to add a new route? /rbac/route does not allow to add.

strtob commented 5 years ago

I also missing available routes of new controller I've created last time. Also I've I press the refresh button, the new routes (controller actions) don't appear. I've got also no error return by the ajax request

NickGoodwind commented 10 months ago

Hello everyone I know it's been a while on this issue, but for anyone on the future that get's to this point I would like to share the resolution to the issue.

What you need to do to make this work is to change the AccessControl class inside all of your controllers from yii\filters\AccessControl to yii2mod\rbac\filters\AccessControl this way when you refresh the routes inside the rbac\route view you'll have all the controllers and respective views added to the manager.

I hope this works for everyone.