Adds the DashboardController

This commit is contained in:
James Brooks
2014-11-24 15:30:03 +00:00
parent e440a04ca0
commit f5765be597
2 changed files with 14 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
/**
* AKA the Management Panel.
*/
class DashboardController extends Controller {
public function showDashboard() {
return 'Coming soon...';
}
}