I was just looking for feedback on how to go about implementing this:
I have two types of users needing authentication in my system, Users & Admins. Now the tasks they will carry out and the data I store about them warrants that they each have a separate database table storing their info/authentication info.
I have implemented a working CredentialsAuthProvider called UserCredentialsProvider that authenticates users at /auth/credentials. The logic checks the User table in the database and authenticates. Now to authenticate Admins should I implement a second CredentialsAuthProvider called AdminCredentialsAuthProvider and register each on separate routes such as /user/auth/credentials and /admin/auth/credentials or also implement the admin logic within the same TryAuthenticate of UserCredentialsProvider.
If either above is the solution how would I go about registering separate routes or differentiating between admin/user when calling TryAuthenticate.
Any help would be great. Thank you.
