aboutsummaryrefslogtreecommitdiffstats
path: root/internal/thing/repo/repository.go
diff options
context:
space:
mode:
authorLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-07-02 01:39:46 -0400
committerLibravatar Mo Tarbin <mhed.t91@gmail.com>2024-07-02 01:39:46 -0400
commite40c2a84cd93683aa7e4d98d4ada7923e32a3e33 (patch)
tree8c9e68426c73ef9646e26b837e1115a857fe6482 /internal/thing/repo/repository.go
parent17326a16a018ae84d274be53b52be9273ef69932 (diff)
downloaddonetick-e40c2a84cd93683aa7e4d98d4ada7923e32a3e33.tar.gz
donetick-e40c2a84cd93683aa7e4d98d4ada7923e32a3e33.tar.bz2
donetick-e40c2a84cd93683aa7e4d98d4ada7923e32a3e33.zip
Dissociate chore with thing in deleteChore function
Diffstat (limited to '')
-rw-r--r--internal/thing/repo/repository.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/thing/repo/repository.go b/internal/thing/repo/repository.go
index a7b1fc9..ad5a92f 100644
--- a/internal/thing/repo/repository.go
+++ b/internal/thing/repo/repository.go
@@ -70,6 +70,10 @@ func (r *ThingRepository) DissociateThingWithChore(c context.Context, thingID in
return r.db.WithContext(c).Where("thing_id = ? AND chore_id = ?", thingID, choreID).Delete(&tModel.ThingChore{}).Error
}
+func (r *ThingRepository) DissociateChoreWithThing(c context.Context, choreID int) error {
+ return r.db.WithContext(c).Where("chore_id = ?", choreID).Delete(&tModel.ThingChore{}).Error
+}
+
func (r *ThingRepository) GetThingHistoryWithOffset(c context.Context, thingID int, offset int) ([]*tModel.ThingHistory, error) {
var thingHistory []*tModel.ThingHistory
if err := r.db.WithContext(c).Model(&tModel.ThingHistory{}).Where("thing_id = ?", thingID).Order("created_at desc").Offset(offset).Limit(10).Find(&thingHistory).Error; err != nil {