This commit is contained in:
2025-01-03 15:14:03 +03:00
parent 63f88f425e
commit 7e9d2cf5a7
2 changed files with 17 additions and 2 deletions

View File

@ -49,10 +49,14 @@ class TgBotRestController extends RestController
$this->model->save();
$this->renderApi($this->model->toArray());
$resArr = $tgBot->toArray();
$resArr['has_card'] = CardService::userHasCard($resArr['user_id']);
$this->renderApi($resArr);
}
$resArr = $tgBot->toArray();
$resArr['has_card'] = CardService::userHasCard($resArr['user_id']);
$this->renderApi($tgBot->toArray());
$this->renderApi($resArr);
}
#[NoReturn] public function actionCreateCard(): void