saeideng
saeideng
@karmicdice `middleware` hook added to bake to generate it when create new plugin with bake return types added to branch 4 only , yes if you are using cake/plugin/4 you...
can you explain more ?
needs to rebase
I transferred the issue to correct place and I wanna convert this shell/task (mark_migrated) to command soon
>Can History panel refresh data without page reload ? this now implemented there is a button to reload history title of issue could be change
there is `Configure::read('TinyAuth')` in `TinyAuth\Utility\Config::all()` but it checks only once ```php public static function all() { if (!static::$_config) { $config = (array)Configure::read('TinyAuth') + static::$_defaultConfig; static::$_config = $config; } return static::$_config;...
and configs from component should apply to `Configure::read('TinyAuth')` or no? because `$this->loadComponent('TinyAuth.Authorization)` loads after `Application::middleware()` and a way to write configs is in `Application::bootstrap()` ``` Configure::write('TinyAuth.multiRole', true); ```