From 9fb04850666fcfa8fee80255bb911e3e9b7f265c Mon Sep 17 00:00:00 2001 From: Roland Schneider Date: Thu, 17 Feb 2022 07:25:46 +0100 Subject: [PATCH] add ActivatedFilter --- mobileapi/controllers/PingController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobileapi/controllers/PingController.php b/mobileapi/controllers/PingController.php index d0db3b4..d5b1992 100644 --- a/mobileapi/controllers/PingController.php +++ b/mobileapi/controllers/PingController.php @@ -59,7 +59,7 @@ class PingController extends RestController protected function getOptionalActivatedActions() { // user must not be activated to call this actions - return ['ping', 'pingActivated']; + return ['ping', 'ping-activated']; } }