Is there a way to get url path without parameters.
If I have this inside RouterModule:
{ path: 'one/two', component: OneTwoComponent }
{ path: 'one/two/:id', component: OneTwoComponent }
I need to get string
"/one/two"
for my NavigationService in both cases, with and without id.