You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the state is that whenever I try to access any other angular route, i will be redirected to the log in adress i have specified. My server redirects all html requests to index.
But how do I open up specific angular routes to be available for all users?
The text was updated successfully, but these errors were encountered:
I know that its bed way but for now i add this: $scope.$on('$locationChangeStart', function(event, next, current) { var parser; parser = document.createElement('a'); parser.href = next; if (parser.pathname === '/users/login') { return event.preventDefault(); } });
Right now the state is that whenever I try to access any other angular route, i will be redirected to the log in adress i have specified. My server redirects all html requests to index.
But how do I open up specific angular routes to be available for all users?
The text was updated successfully, but these errors were encountered: