app/config/services.php: adding "activation-link" route.
This commit is contained in:
parent
f312ae83ce
commit
552af58c7f
1 changed files with 5 additions and 0 deletions
|
|
@ -131,6 +131,11 @@ $di->setShared('router', function() {
|
|||
'action' => 'settings',
|
||||
))->setName('user-settings');
|
||||
|
||||
$router->add('/act/{link}', array(
|
||||
'controller' => 'user',
|
||||
'action' => 'activationlink',
|
||||
))->setName('activation-link');
|
||||
|
||||
return $router;
|
||||
});
|
||||
|
||||
|
|
|
|||
Reference in a new issue