diff options
Diffstat (limited to 'view/recipe.go')
-rw-r--r-- | view/recipe.go | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/view/recipe.go b/view/recipe.go index 52b7a7e..ba670a2 100644 --- a/view/recipe.go +++ b/view/recipe.go @@ -12,20 +12,8 @@ func RecipeRead(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} recipe.Id = mux.Vars(r)[`id`] - tx, err := model.NewTx() - if err != nil { - http.Error(w, err.Error(), http.StatusInternalServerError) - return - } - - err = recipe.Read(tx) - if err != nil { - model.Rollback(tx) - http.Error(w, err.Error(), http.StatusInternalServerError) - return - } - - err = tx.Commit() + var obj model.Object = &recipe + err := model.SafeCrud(obj.Read) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return |