You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -57,6 +57,38 @@ Refer to the documentation of [opensoft/rollout](https://github.com/opensoft/rol
57
57
58
58
## Zend Developer Toolbar
59
59
60
-
The module comes with support for the zend developer toolbar. Currently the toolbar only shows the list of features and enable status for a given user.
60
+
The module comes with support for the zend developer toolbar.
:warning: The ZDT rollout comes with a quick toggling action, allowing the user to quickly enable/disable a feature by clicking on one of the listed feature elements in the toolbar. Make sure to only authorise these actions in development mode. :warning:
65
+
66
+
An example of enabling the end points with BjyAuthorize:
67
+
68
+
```php
69
+
<?php
70
+
71
+
// config/autoload/authorization.development.php
72
+
73
+
use Adlogix\Zf2Rollout\Service\Controller\RolloutController;
74
+
75
+
return [
76
+
'bjyauthorize' => [
77
+
78
+
'guards' => [
79
+
80
+
// Add this if you are adding guards on controllers
0 commit comments