選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

home.controller.js 589B

1234567891011121314
  1. angular.module('camotionAdmin')
  2. .controller('HomeController', ['$scope', '$state', 'luticateAuthCache',
  3. function($scope, $state, luticateAuthCache) {
  4. if (luticateAuthCache.hasEffectivePermission("CAMOTION_CAMERA_GET")) {
  5. $state.go('cameras');
  6. }
  7. else if (luticateAuthCache.hasEffectivePermission("CAMOTION_SENSOR_GET")) {
  8. $state.go('sensors');
  9. }
  10. else if (luticateAuthCache.hasEffectivePermission("CAMOTION_COMMAND_GET")) {
  11. $state.go('commands');
  12. }
  13. }]);