From 49ffaf0aac14272c2f64a3005ad651b78eb51ad1 Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 12 Mar 2024 21:25:19 +0100 Subject: model: Remove .Touch() method The model package should never modify the data. Thus the functionality to update timestamps is moved to the controller package which is intended to modify data. --- model/recipe.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'model/recipe.go') diff --git a/model/recipe.go b/model/recipe.go index db3af70..acd9a3b 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -5,7 +5,6 @@ import ( "encoding/json" "errors" "fmt" - "time" ) type Recipe struct { @@ -23,11 +22,6 @@ func (r Recipe) String() string { return string(b) } -func (r *Recipe) Touch() { - now := time.Now().Unix() - r.LastChanged = fmt.Sprint(now) -} - func (r *Recipe) Create() error { query := `INSERT INTO recipes (title, portions, url, notes, created, last_changed) -- cgit v1.2.3-70-g09d2