boerse
All checks were successful
Deploy / deploy-staging (push) Successful in 6s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-04-22 01:31:18 +02:00
parent a1bab34bd3
commit 91dc84d027
16 changed files with 1697 additions and 86 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
require_auth();
$assets = app()->assets();
if ($assets) {
$assets->addStyle('/module/boersenchecker/asset?file=boersenchecker.css');
$assets->addScript('/module/boersenchecker/asset?file=boersenchecker.js', 'footer', true);
}
$page = new \Modules\Boersenchecker\Support\DashboardPage();
module_tpl('boersenchecker', 'dashboard', $page->handle());