Paul Cleary
Paul Cleary
Introduces a naive `Queue` as well as an FS2 stream for handling orders in the background. The FS2 stream will either save the order (for new orders) or delete the...
Implement authentication middleware for logged in endpoints. It appears as though TSec is the way to go here... https://jmcardon.github.io/tsec/docs/http4s/auth-jwt.html Need a few things here: 1. Need some kind of login...
The front end application should communicate securely (i.e. secure cookies / jwt / etc) to the backend api. This will require some kind of authorization middleware to be setup. The...
Currently, we manually append the params to the url / query string using urljoin. Instead, we can send the query params in as a dictionary
**Background** The pet store is rather far along, but there a lot of ideas for next steps to make it better. These include things like: * Review all the bits...
I would like to enforce invariants in the core domain. A few issues that always troubled me: 1. Do we have a separate "layer" for JSON vs. our core domain...
https://github.com/ariesprayoga/swagger-java-sample-app/blob/master/src/main/java/com/wordnik/swagger/sample/resource/UserResource.java
Our entities / domain model have virtually no validations. Add invariant checks so that no domain model can be created. For example, for a user, the phone number must be...
The way we check if something exists, or is unique, is done via Validations. The correct way to do this in a SQL db application is to enforce those invariants...
Why not, amirite?