diff options
author | xengineering <me@xengineering.eu> | 2023-01-14 18:07:47 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-08 20:44:02 +0100 |
commit | 9005de11ef8b7cf32cc8503e8b5f134eca47b4fb (patch) | |
tree | c6a445bd55790c9677d9217de72b8d968c33ce2d /web/router.go | |
parent | 1f8b5c2bbe20c4c6b7b334b00ae5e6622dcd51f7 (diff) | |
download | ceres-9005de11ef8b7cf32cc8503e8b5f134eca47b4fb.tar ceres-9005de11ef8b7cf32cc8503e8b5f134eca47b4fb.tar.zst ceres-9005de11ef8b7cf32cc8503e8b5f134eca47b4fb.zip |
Add new recipe edit page
Recipes should be completely editable and removable. Thus this edit page
was added.
Diffstat (limited to 'web/router.go')
-rw-r--r-- | web/router.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/router.go b/web/router.go index 5b972c2..ec67399 100644 --- a/web/router.go +++ b/web/router.go @@ -14,6 +14,8 @@ func RunServer(config utils.HttpConfig, db *utils.Database) { http.HandleFunc("/recipe", recipe(db, config.Templates)) + http.HandleFunc("/recipe/edit", recipe_edit(db, config.Templates)) + http.HandleFunc("/recipe/image", image(config.Storage)) http.HandleFunc("/add_recipes", add_recipes(db, config.Storage, config.Static)) |