summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
Diffstat (limited to 'view')
-rw-r--r--view/recipe.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/view/recipe.go b/view/recipe.go
index b0525a1..1dd6045 100644
--- a/view/recipe.go
+++ b/view/recipe.go
@@ -2,7 +2,6 @@ package view
import (
"net/http"
- "strconv"
"xengineering.eu/ceres/model"
@@ -10,11 +9,8 @@ import (
)
func Recipe(w http.ResponseWriter, r *http.Request) {
- id_str := mux.Vars(r)[`id`]
- id, _ := strconv.Atoi(id_str)
-
recipe := model.Recipe{}
- recipe.Id = int64(id)
+ recipe.Id = mux.Vars(r)[`id`]
err := recipe.Read()
if err != nil {