Continuing the discussion from Different Authentication Methods for different types of users, and migrating between them:
Thanks @dawid.matuszczyk for you reply - I got side tracked onto another thing and this ticket got closed before I could reply.
Questions
- When a user is registering how can I indicate what role they should have? I use Blazor WASM as my front end currently.
- How can I have a different authentication method for different roles? E.g. Paid User needs username and password, whereas free user can use passwordless login.
- I already have an API defined with Permissions. So I assume I create PaidUser and a FreeUser roles and setup what permissions they have. Is that correct?
- When a user changes role I assume that I then use the Management API to make that change? Is that correct?
Thanks.