Compare View

switch
from
...
to
 
Commits (2)

Diff

Showing 1 changed file Side-by-side Diff

screen_sequence_diagrams/reset_password.dot View file @ 69d53ff
... ... @@ -14,16 +14,14 @@ digraph G{
14 14  
15 15 "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond,
16 16 fixedsize=true, width=1.4, height=1.4];
17   - "Failure: User did not\nchange password"[shape=none];
18   - "Success: User \nchanged password"[shape=none];
19 17  
20 18 "Settings" -> "POST /api/request_password_reset";
21 19 "POST /api/request_password_reset" -> "Controller";
22 20 "Controller" -> "Email";
23 21  
24   - "Email" -> "Failure: User did not\nreset password";
25   - "Failure: User did not\nreset password" -> "Settings";
  22 + "Email" -> "Failure: User did not\nreset password"[shape=none];
  23 + "Failure: User did not\nreset password"[shape=none] -> "Settings";
26 24  
27   - "Email" -> "Success: User \nreset password";
28   - "Success: User \nreset password" -> "Settings";
  25 + "Email" -> "Success: User \nreset password"[shape=none];
  26 + "Success: User \nreset password"[shape=none] -> "Settings";
29 27 }
30 28 \ No newline at end of file