summaryrefslogtreecommitdiff
path: root/model/step.go
AgeCommit message (Collapse)Author
2024-09-11Apply go fmt to all source filesxengineering
This applies default Go code style recommendations.
2024-05-17model: Add strict Step.Validate()xengineering
2024-05-17model: Fix another unhandled errorxengineering
This could also lead to bugs.
2024-05-12model: Add per-step ingredientsxengineering
2024-04-06model: CRUD methods only for targeted objectsxengineering
A create, read, update or delete (CRUD) method should only care about the object which provides the receiver and the relations to its child objects. For example the method func (r *Recipe) Create(tx *sql.Tx) error {} should only create the relational data inside the database for the recipe, not for the steps nested into this Recipe struct. This should be covered by the func (s *Step) Create(tx *sql.Tx) error {} method which is then called by `func (r *Recipe) Create()`. This has the advantage that every CRUD method has a constraint scope and is more unified since the Step CRUD methods now have a Step struct as receiver instead of a Recipe receiver.
2024-03-24model: Add recipe stepsxengineering
This provides the infrastructure to create views and HTTP handlers to provide recipe steps.