Blame view
screen_sequence_diagrams/drop_class.dot
1.07 KB
7dc1e8e7d
|
1 2 |
digraph G{ ratio=0.75; |
964dee9cf
|
3 |
// rankdir="LR"; |
c5f43629f
|
4 5 |
node[shape=box, style="rounded,filled,bold"]; splines=ortho; |
7dc1e8e7d
|
6 |
nodesep=1.4; |
dd64d53b8
|
7 8 |
labelloc="t"; label="[A4] Drop a class"; |
d1e82fdd9
|
9 |
"Navigation Menu/Settings"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; |
c5f43629f
|
10 11 |
"Controller"[center=true, fillcolor="#aaaaff", style=filled, shape=diamond, fixedsize=true, width=1.4, height=1.4]; |
7dc1e8e7d
|
12 13 14 |
"User Check"[center=true, fillcolor="#aaaaff", style=filled]; //labelfloat=true; //lp=100; |
c5f43629f
|
15 16 |
"Controller"[center=true, fillcolor="#aaaaff", style=filled, shape=diamond, fixedsize=true, width=1.4, height=1.4]; |
c34269fa2
|
17 |
"POST /api/sections/{pk}/drop"[shape=none]; |
d1e82fdd9
|
18 |
"Navigation Menu/Settings" -> "POST /api/sections/{pk}/drop"; |
c34269fa2
|
19 |
"POST /api/sections/{pk}/drop" -> "Controller"; |
7dc1e8e7d
|
20 |
"Controller" -> "User Check"; |
daf540f87
|
21 22 |
"User did not drop class"[shape=none]; |
ae44d49d8
|
23 24 |
"User Check" -> "User did not drop class"; |
d1e82fdd9
|
25 26 |
"User did not drop class" -> "Navigation Menu/Settings"; |
daf540f87
|
27 28 |
"User successfully dropped class"[shape=none]; |
ae44d49d8
|
29 30 |
"User Check" -> "User successfully dropped class"; |
d1e82fdd9
|
31 32 |
"User successfully dropped class" -> "Navigation Menu/Settings"; |
7dc1e8e7d
|
33 |
} |