mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 07:04:24 +00:00
parent
3b0774805c
commit
f06637435b
1 changed files with 2 additions and 4 deletions
|
@ -41,15 +41,13 @@ type flows struct {
|
|||
}
|
||||
|
||||
type flow struct {
|
||||
Type string `json:"type"`
|
||||
Stages []string `json:"stages"`
|
||||
Type string `json:"type"`
|
||||
}
|
||||
|
||||
func passwordLogin() flows {
|
||||
f := flows{}
|
||||
s := flow{
|
||||
Type: "m.login.password",
|
||||
Stages: []string{"m.login.password"},
|
||||
Type: "m.login.password",
|
||||
}
|
||||
f.Flows = append(f.Flows, s)
|
||||
return f
|
||||
|
|
Loading…
Reference in a new issue