Skip to content

Commit

Permalink
Added the app version to the config response.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslanbaidan committed Oct 4, 2024
1 parent aada796 commit 7fa6885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/ApiConfigController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ public function __construct(ConfigService $configService)

public function getList()
{
return new JsonModel($this->configService->getLanguage());
return new JsonModel(array_merge($this->configService->getAppVersion(), $this->configService->getLanguage()));
}
}

0 comments on commit 7fa6885

Please sign in to comment.