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
@lucazulian The idea here is to use generic capabilities of servant to impose structure on our endpoints. The root of all endpoints should be split into two parts: protected and unprotected. Endpoints under the protected namespace should use JWT-based auth scheme using experimental auth module from the servant library (we are not using servant-auth), so each incoming request is verified automatically. Unprotected endpoints shouldn't require this authentication because they either public or the produce this JWT token.
To be able to run the application, add some tests to them
The text was updated successfully, but these errors were encountered: