$rootScope.isAdmin==true の場合、デフォルトで Angular.js が /route1 に移動するようにする方法ですが、isAdmin が false または存在しない場合 - /route2 に移動しますか?
isAdmin はログイン コントローラーで設定されます。
.controller(
'LoginController',
['$scope', '$rootScope', '$http', 'authService',
($scope, $rootScope, $http, authService) ->
$scope.submit = ->
try
$http.post("/users/sign_in",
user:
email: @username
password: @password
remember_me: if @remember_me then 1 else 0
).success (response) ->
$rootScope.isAdmin = response[0].is_admin
authService.loginConfirmed()
catch ex
alert ex
])