From 3f7deb99c6a26e92d8d89b66b9ac29bb611f7808 Mon Sep 17 00:00:00 2001 From: Vanessa Minik Date: Wed, 30 Oct 2024 09:02:02 -0600 Subject: [PATCH] test --- .../recipe-app/views/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 demos/Achitecture-Diagrams/recipe-app/views/README.md diff --git a/demos/Achitecture-Diagrams/recipe-app/views/README.md b/demos/Achitecture-Diagrams/recipe-app/views/README.md new file mode 100644 index 0000000..5764ba8 --- /dev/null +++ b/demos/Achitecture-Diagrams/recipe-app/views/README.md @@ -0,0 +1,16 @@ +```mermaid +journey + title User Journey for Editing a Recipe + section Access Edit Page + User navigates to recipe details page: 5: User + User clicks "Edit" button: 5: User + Server renders edit form: 5: Server + section Edit Recipe + User fills out the form with new recipe details: 5: User + User submits the form: 5: User + Server processes the form data: 5: Server + Server updates the recipe in the database: 5: Server + section Confirmation + Server redirects user to updated recipe details page: 5: Server + User sees the updated recipe details: 5: User +``` \ No newline at end of file