Commit 593f16252e092646310df5d1334926fc70392e13
1 parent
ac4f36ea57
Exists in
master
fixed resetpassword better
Showing 1 changed file with 1 additions and 1 deletions Inline Diff
screen_sequence_diagrams/reset_password.dot
View file @
593f162
digraph G{ | 1 | 1 | digraph G{ | |
ratio=0.75; | 2 | 2 | ratio=0.75; | |
//rankdir="LR"; | 3 | 3 | //rankdir="LR"; | |
node[shape=box, style="rounded,filled,bold"]; | 4 | 4 | node[shape=box, style="rounded,filled,bold"]; | |
splines=ortho; | 5 | 5 | splines=ortho; | |
nodesep=1.4; | 6 | 6 | nodesep=1.4; | |
labelloc="t"; | 7 | 7 | labelloc="t"; | |
label="[A6] Reset password"; | 8 | 8 | label="[A6] Reset password"; | |
"Settings"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | 9 | 9 | "Settings"[center=true, fillcolor="#aaaaff", style=filled,pos="0,0!"]; | |
"Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond]; | 10 | 10 | "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond]; | |
"POST /api/request_password_reset"[shape=none]; | 11 | 11 | "POST /api/request_password_reset"[shape=none]; | |
labelfloat=true; | 12 | 12 | labelfloat=true; | |
lp=100; | 13 | 13 | lp=100; | |
14 | 14 | |||
"Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond, | 15 | 15 | "Controller"[center=true, fillcolor="#aaaaff", style=filled, shape = diamond, | |
fixedsize=true, width=1.4, height=1.4]; | 16 | 16 | fixedsize=true, width=1.4, height=1.4]; | |
17 | 17 | |||
"Settings" -> "POST /api/request_password_reset"; | 18 | 18 | "Settings" -> "POST /api/request_password_reset"; | |
"POST /api/request_password_reset" -> "Controller"; | 19 | 19 | "POST /api/request_password_reset" -> "Controller"; | |
"Controller" -> "Email"; | 20 | 20 | "Controller" -> "Email"; | |
21 | 21 | |||
"Email" -> "Failure: User did not\nreset password"[shape=none]; | 22 | 22 | "Email" -> "Failure: User did not\nreset password"[shape=none]; | |
"Failure: User did not\nreset password" -> "Settings"; | 23 | 23 | "Failure: User did not\nreset password" -> "Settings"; | |
24 | 24 |