aboutsummaryrefslogtreecommitdiff
path: root/db/model.go
AgeCommit message (Collapse)Author
2022-07-13feat: Add custom cssGabriel A. Giovanini
2022-06-20ref: Remove model dependency fom workerGabriel A. Giovanini
It was a bit weird to have that dependency in first place.
2022-06-16fix: Pass entry as referenceGabriel A. Giovanini
It was not getting the object created by gorm so `.ID` was 0 causing all sort of weird iterations. That is also cause by the lack of testes. That will also be fixed in the next commits.
2022-06-15ref: Move to a MVC like approachGabriel A. Giovanini
Before everything was dumped into the controller file, now it is spread out a bit. It is still far from good, like the controller is not really a controller... baby steps I guess The refactored was based on this post: https://www.alexedwards.net/blog/organising-database-access
2022-06-13ref: Rename snake case variableGabriel A. Giovanini
My pythonic brain kicked in and I ended up naming a variable using snake case.
2022-06-06Initial commitGabriel A. Giovanini