aboutsummaryrefslogtreecommitdiffstats
path: root/app/main/dashboard/home/home.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/main/dashboard/home/home.controller.js')
-rw-r--r--app/main/dashboard/home/home.controller.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/main/dashboard/home/home.controller.js b/app/main/dashboard/home/home.controller.js
new file mode 100644
index 0000000..3604530
--- /dev/null
+++ b/app/main/dashboard/home/home.controller.js
@@ -0,0 +1,16 @@
+(function () {
+
+ 'use strict';
+
+ angular
+ .module('dcaeApp.dashboard.home')
+ .controller('DashboardHomeController', dashboardHomeController);
+
+ function dashboardHomeController($state) {
+
+ var vm = this;
+
+
+ }
+
+})();