diff options
author | xengineering <me@xengineering.eu> | 2024-03-05 20:09:38 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-05 20:17:58 +0100 |
commit | a1edb7fa63dd290654884eeabf89acc9e5965ae5 (patch) | |
tree | 820a96e354f902e3da3d36851d8247b00d6cde99 /view | |
parent | 74fc87dcfaa8a65c14c0ef6fe88b6df02f2e90cb (diff) | |
download | ceres-a1edb7fa63dd290654884eeabf89acc9e5965ae5.tar ceres-a1edb7fa63dd290654884eeabf89acc9e5965ae5.tar.zst ceres-a1edb7fa63dd290654884eeabf89acc9e5965ae5.zip |
model: Move timestamp updates to controller
The model package should handle the object relational mapping (ORM).
This requires implementing the four CRUD methods:
- create
- read
- update
- delete
On create and update the model package used to modify the timestamps
like `last_changed`. This was detected by the unit tests which tested
that the data is not changed in a create / read cycle or is updated
correctly in an update / read cycle.
This raised the question if it is a good idea that the model package is
"smart" and updates timestamps. To keep the model package and the
included unit tests simple the new design enforces that the complete
data - including metadata - is always exactly the same after using any
CRUD methods.
The functionality of updating the timestamp is moved to the HTTP handler
inside the controller package. This also matches the definition of the
controller package as the part of the code which is alone responsible to
actually change the data.
This commit finally fixes the unit test suite.
Diffstat (limited to 'view')
0 files changed, 0 insertions, 0 deletions