- ABP Framework version: v5.2.2
- UI type: Angular
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no, Microservice
Identity API
I am customizing Identity module according to this document: Customizing the Application Modules
I extended IdentityRoles service/repository/contoller so I have a method _roleService.GetListByIds(Guid[] ids)
. Everything is ok, so far. The end-point is working like expected.
Identity Angular
Question: I am creating ng-library for my each microservice to generate proxies, separately (reference:Microservice Proxy Generation). To use my new method that is in IdentityRoleService, should I create an ng-library for identity and generate identity proxies in it? So, as I understand, I will use these proxies instead of using them from abp/ng.core
?
Any suggestion would be appreciated! Thanks...
3 Answer(s)
-
0
-
0
Hi @liangshiwei, actually I am extending/overriding the end-point in identity-service microservice itself. And it is different then yours.
But yes it doesn't matter. I got your your point. I just ask for better way. Using RestService can be solution. Now, I created a library for identity and generated proxies in it.
I just have concerns about using it this way, if there are drawbacks.
-
1
Hi,
It seems good, no problem.