File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ to HTTP 401 response.
32
32
33
33
In the event that a requested resource returns an HTTP 403 response (i.e. the user is
34
34
authenticated but not authorized to access the resource), the user's request is discarded and
35
- the ` event:auth-authorizationRequired ` message is broadcased from $rootScope.
35
+ the ` event:auth-forbidden ` message is broadcased from $rootScope.
36
36
37
37
###Typical use case:
38
38
Original file line number Diff line number Diff line change 59
59
$rootScope . $broadcast ( 'event:auth-loginRequired' , rejection ) ;
60
60
return deferred . promise ;
61
61
case 403 :
62
- $rootScope . $broadcast ( 'event:auth-authorizationRequired ' , rejection ) ;
62
+ $rootScope . $broadcast ( 'event:auth-forbidden ' , rejection ) ;
63
63
break ;
64
64
}
65
65
}
You can’t perform that action at this time.
0 commit comments