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
BREAKING CHANGE: Deprecate public use of $urlRouter and $urlMatcherFactory in favor of $urlService
The `UrlService` combines the commonly used URL APIs in a single place.
The service may be injected in a run block as `$urlService`, or in a config block as `$urlServiceProvider`.
The service object has two nested API objects, `rules` and `config`. An example usage is `$urlService.rules.otherwise('/home')`
The existing API for `$urlRouter` and `$urlMatcherFactory` will continue to function as before, but are now considered an "internal API".\
The new `$urlService` is a facade which delegates to the appropriate internal APIs.
feat(UrlService): Create UrlService API (facade) for easier access to URL based APIs
0 commit comments