diff --git a/app/config/services.php b/app/config/services.php index 85a2866..c062c68 100644 --- a/app/config/services.php +++ b/app/config/services.php @@ -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; });