1

I have a problem that the "cakeDC users" plugin does not work with the bypassAuth that I would get an example of how it should be implemented.

my code:

return [
'CakeDC/Auth.permissions' => [
     [
       'controller' => 'test',
      'action' => ['index'],
      'bypassAuth' => 'true',
    ],....

Thanks in advance.

Pradeep
  • 9,667
  • 13
  • 27
  • 34

1 Answers1

1

You need to set the 'bypassAuth' => true as the expected type is boolean|null, not string.

steinkel
  • 1,156
  • 9
  • 15