Files
cachet-docker/app/controllers/DashboardController.php
2014-11-24 17:33:22 +00:00

11 lines
203 B
PHP

<?php
/**
* AKA the Management Panel.
*/
class DashboardController extends Controller {
public function showDashboard() {
return 'Coming soon... <a href="/">Back to Status Page.</a>';
}
}