In an older version (0.4?) of angular ui-router we could do this...
url: '/:optional'
And everything worked fine (minus an extra backslash in the url). But when I upgraded to 1.0.5 I see...
Error: Param values not valid for state 'projects.list'. Invalid params: [ optional ]
I tried...
url: '/{mine:(?:/[^/]+)?}' too but it didn't work either
Is there a way I can do this in the 1.0 world?