mobile api changes + docker image basics

This commit is contained in:
Schneider Roland
2022-06-11 21:05:19 +02:00
parent 7e5efc2c7f
commit 067fc72ce4
207 changed files with 3803 additions and 130 deletions

View File

@@ -19,6 +19,13 @@ use yii\web\NotFoundHttpException;
class ApiController extends RestController
{
public function actionDashboardPage(){
$apiManager = new ApiManager();
return $apiManager->getDashboardPage();
}
public function actionCardPage(){
$apiManager = new ApiManager();

View File

@@ -8,6 +8,7 @@
namespace mobileapi\controllers;
use common\models\Card;
use mobileapi\models\LoginForm;
use sizeg\jwt\Jwt;
use Yii;