Removed pre-release special version handling

This commit is contained in:
Bernd Bestel
2023-05-24 20:32:48 +02:00
parent 8c033ff6c8
commit 70bb014c9f
6 changed files with 11 additions and 20 deletions

View File

@@ -12,7 +12,8 @@ class SystemController extends BaseController
public function About(Request $request, Response $response, array $args)
{
return $this->renderPage($response, 'about', [
'system_info' => $this->getApplicationService()->GetSystemInfo(),
'systemInfo' => $this->getApplicationService()->GetSystemInfo(),
'versionInfo' => $this->getApplicationService()->GetInstalledVersion(),
'changelog' => $this->getApplicationService()->GetChangelog()
]);
}