add ActivatedFilter

This commit is contained in:
2022-02-17 07:23:11 +01:00
parent ea72ba1fe1
commit a03c3733f7
6 changed files with 149 additions and 1 deletions

View File

@@ -59,8 +59,14 @@ class LoginController extends RestController
protected function getOptionalActions()
{
// user must not be logged in to call this actions
return ['login'];
}
protected function getOptionalActivatedActions()
{
// user must not be activated to call this actions
return ['login'];
}
}