Blame view

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