I would need to target different api endpoint roots from different angular modules.
For example
- http://server:port/user-api from User module
- http://server:port/admin-api from Admin module
- http://server:port/checkout-api from Cart module and so on.
From what I see, the api root called by ngrx/data can be changed but only globally, by means of DefaultDataServiceConfig
in app.module
How can I have different api roots in different Angular modules?
At the moment I am using a CustomizeHttpUrlGenerator
to change the urls based on a naming convention of mine, but I guess there's a better way.
Thanks
create a provider and change it when you want.
then for admin
and somewhere in code