Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions demos/Achitecture-Diagrams/recipe-app/views/README.md
Original file line number Diff line number Diff line change
@@ -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
```