Added a little barcode scanner testing page (references #362)

This commit is contained in:
Bernd Bestel
2019-09-21 20:01:49 +02:00
parent 4eabee3db7
commit c32ea087df
8 changed files with 182 additions and 2 deletions

View File

@@ -96,4 +96,9 @@ class SystemController extends BaseController
'changelog' => $this->ApplicationService->GetChangelog()
]);
}
public function BarcodeScannerTesting(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
{
return $this->AppContainer->view->render($response, 'barcodescannertesting');
}
}