Skip to content

Instantly share code, notes, and snippets.

@fernandofleury
Last active August 29, 2015 14:07
Show Gist options
  • Save fernandofleury/c443e96b5b3f26c92c9b to your computer and use it in GitHub Desktop.
Save fernandofleury/c443e96b5b3f26c92c9b to your computer and use it in GitHub Desktop.
.state('client.details', {
url: '/:idClient'
})
// gera url /10
.state('client.details.tasks', {
url:'/tasks'
})
// gera url /10/tasks
.state('client.details.tasks.show', {
url:'/:idShow'
})
// geral url /10/tasks/11
.state('client.details.tasks.list', {
url:'/list'
})
// geral url /10/tasks/list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment