summaryrefslogtreecommitdiff
path: root/view/recipes.go
AgeCommit message (Collapse)Author
2024-10-23Switch to http.Handlerxengineering
The used `func(http.ResponseWriter, *http.Request)` return values made the HTTP handler factory functions quite unreadable. Thus it is switched to the http.Handler type.
2024-10-13model: Replace global db variable by custom typexengineering
Reducing global variables makes it easier to understand functions independently of the rest of the code. Adding the new model.DB type as a custom variant of the sql.DB type makes it possible to write methods for the database which makes the code way more readable.
2024-10-12model: Fix direct access to databasexengineering
Instead a database transaction has to be used. Each database interaction should be wrapped into a transaction to make sure any possible change (even side-effects) can be rolled back in case of errors.
2024-03-03view: Add 'Read' suffix to function namesxengineering
This reflects that these HTTP handler functions implement one of the four CRUD methods create, read update and delete.
2024-02-13view: Implement GET handler for model.Recipesxengineering