tp_servicedesk/app/controllers/DashboardController.php

11 lines
179 B
PHP

<?php
class DashboardController extends BaseController {
function index($f3){
$this->requireLogin();
$this->renderView('/ui/views/dashboard.html');
}
}