Mapping to controller action

Hi everyone. I’m trying to map ‘users/signup’ route to Users::add action… I’ve tried using theses two approach, but nothing.

$routes->resources(‘Users’, [
‘actions’ => [‘signup’ => ‘add’]
]);

$routes->resources(‘Users’, [
‘map’ => [
‘add’ => [
‘action’ => ‘add’,
‘method’ => ‘POST’,
‘path’ => ‘/signup’
],
]
]);

1 Like

I haven’t used the resources method, but rather connect:
$routes->connect('/users/signup', ['controller' => 'Users', 'action' => 'add']);

1 Like