add mobile api services: virtual-key-page and ticket-page

This commit is contained in:
2022-02-20 20:34:35 +01:00
parent ac5076534b
commit ae2924a4bd
5 changed files with 142 additions and 3 deletions

View File

@@ -25,5 +25,14 @@ class ApiController extends RestController
return $apiManager->getCardPage();
}
public function actionTicketPage(){
$apiManager = new ApiManager();
return $apiManager->getTicketPage();
}
public function actionVirtualKeyPage(){
$apiManager = new ApiManager();
return $apiManager->getVirtualKeyPage();
}
}