Commit e05943f594befd436b237211134bdf0bf005db96

Authored by Nam Tran
1 parent f22b4ca26f
Exists in master

Filter Cards SSD

Showing 1 changed file with 32 additions and 0 deletions Side-by-side Diff

filter_cards.dot View file @ e05943f
  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";
  30 + //"Permission Denied: \n User cannot be enrolled in class" -> "Sidebar Menu";
  31 +
  32 +}