Commit 6ba3d804af418705dd96bc87e219bc24a918d69e

Authored by Chung Wang
Exists in master

Merge branch 'master' of https://git.ucsd.edu/110swag/docs

Showing 1 changed file Inline Diff

filter_cards.dot View file @ 6ba3d80
File was created 1 digraph G{
2 ratio=0.75;
3 //rankdir="LR";
4 node[shape=box, style="rounded,filled,bold"];
5 splines=ortho;
6 nodesep=1.4;
7 "Sidebar Menu"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"];
8 "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond];
9 "POST"[shape=none];
10 labelfloat=true;
11 lp=100;
12
13 //"Permission Denied: \n User cannot be enrolled in class"[shape=none]
14 "Success! \n Show live feed"[shape=none];
15 "SUCCESS"[shape=none];
16 "FAILURE"[shape=none];
17
18 "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond,
19 fixedsize=true, width=1.4, height=1.4];
20 //"WhiteListCheck"[center=true, fillcolor="#aaaaff", style=filled, style=filled];
21 "Sidebar Menu" -> "POST";
22 "POST" -> "Controller";
23 "Controller" -> "FAILURE";
24 "FAILURE" -> "Sidebar Menu";
25 //"Controller" -> "SUCCESS";
26 //"SUCCESS"->"WhiteListCheck";
27 //"WhiteListCheck" -> "Permission Denied: \n User cannot be enrolled in class";
28 "WhiteListCheck" -> "Success! \n Show live feed";
29 //"Success! \n User is added to class" -> "Sidebar Menu";