You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
secured POST/DELETE/PUT Endpoints with JWT . Only Authorized Users can access these endpoints. To Generate a token, Register a new account at /api/account/register. Get it confirmed. Generate JWTokens at /api/account/authenticate and use the tokens to access the secured endpoints.
added default roles (SuperAdmin,Admin,Moderator,Basic). Found at Application/Enums/Roles
added default roles seeding on startup
added default users seeding at startup. Here are the default credentials ( [email protected] / 123Pa$$word! ) ( [email protected] / 123Pa$$word! )
updated nugget packages
added custom response for 401 & 403
any newly registered user will be added to the Basic User Role. All associated roles of a user will be visible on /api/Account/authenticate response.
added forgot-password / reset-password endpoints
added basic health check at /health
added user auditing to track changes / creation of new entities by userId