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
I need the last parameter in my state to be optional. In other words: capture it if it is there, but otherwise ignore it.
Something like:
$stateProvider
.state \user.page, {
url: '/:username/:page?'template-url: '...'controller: [
\$stateParams
($stateParams) ->
# The page parameter should be optional.# This should activate on both '/legomind/dashboard' as well as '/legomind'
]
}