Closed misha130 closed 4 years ago
As per https://forum.codidact.org/t/what-kind-of-authorization-framework-library-should-we-use/642/7 it has been decided upon IdentityServer/Identity.NET
The following adjustments should be:
app.UseAuthentication(); app.UseIdentityServer(); app.UseAuthorization();
services.AddIdentityServer() .AddApiAuthorization<ApplicationUser, ApplicationDbContext>();
If its ok with everyone I'll take this. I'll use this this as a basis: https://github.com/IdentityServer/IdentityServer4/tree/master/samples/Quickstarts/5_EntityFramework/src
As per https://forum.codidact.org/t/what-kind-of-authorization-framework-library-should-we-use/642/7 it has been decided upon IdentityServer/Identity.NET
The following adjustments should be: