Skip to content

Commit

Permalink
Add activity diagram back for Add Assignment command
Browse files Browse the repository at this point in the history
  • Loading branch information
lm-44 committed Oct 23, 2024
1 parent c363e38 commit 4518932
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions docs/diagrams/add-assignment/AddAssignmentActivityDiagram.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
@startuml
'https://plantuml.com/activity-diagram-beta

start
:ClickServlet.handleRequest();
:new page;
if (Page.onSecurityCheck) then (true)
:Page.onInit();
if (isForward?) then (no)
:Process controls;
if (continue processing?) then (no)
stop
endif

if (isPost?) then (yes)
:Page.onPost();
else (no)
:Page.onGet();
endif
:Page.onRender();
endif
else (false)
endif

if (do redirect?) then (yes)
:redirect process;
else
if (do forward?) then (yes)
:Forward request;
else (no)
:Render page template;
endif
endif

stop

@enduml

0 comments on commit 4518932

Please sign in to comment.