im created a multitenancy-multidatabase application, and i have a cookie-based authentication, im want to how if is possible to kepping the multi-tenancy and use the JWT application,and how to authentication per tenant works than,?
i can't access JWT token, from the jwt endpoint in abp... what object do i need to pass to return the JWT token, for authentication? and what is the right endpoint to retrieve this token?
I don't want to use extra properties , so a created new columns to the database to work with real fields, not a JSON , but.. when i add some field to the user DTO, the front-end needs to send the new field, inside the extraproperties, and the fields that i created im the tenant's table have the same problem and i dont know how to avoid using extraproperties in the front end , i will show some pictures of my problem.
how can i set the extra properties inside de object of tenant? i mapped the fields of tenant in Module Extension Configurator
and how cand i set a new property in User DTO without extraproperties? i was using the DTO extensions to customize user DTO, but still needs to use extraProperties.
It's not really a problem or bug, but i'm not understanding what should i do when i create a new tenant, i always need to run the DbMigrator to seed the tenant's admins to the database, what should i do, to automatically seed the database when i create a tenant?