dashboard.component.js 341 B

12345678910111213
  1. 'use strict';
  2. angular
  3. .module('app')
  4. .component('dashboard', {
  5. templateUrl: '/resources/dashboard/dashboard.component.html',
  6. controller: ['$scope', 'cms', function ($scope, cms) {
  7. // cms.Authenticated().then(
  8. // _ => { $location.path("/"); },
  9. // _ => { $location.path("/signin"); }
  10. // );
  11. }]
  12. });