Hello,
I have an abp microservice project. I'm trying to implement a custom row level security logic, which requires reading the userid, tenantid, roles, and claims of logged in user. This works fine when the called microservice resolves its logic from within, but when there's calls to other services which we use integration service for, only a set of claims are sent. Now as this is mentioned in https://abp.io/support/questions/6765/CurrentTenant-across-MicroService I realize it is not planned to have user credential forwarded to integration service, but I want to have a way to override the class that generates claims that are sent, where I can add my own custom claims such as 'RLS_OrganizationId'. Is there a way to do so? Thanks in advance