mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:47:32 +00:00
feat: request registration process by prompt (#1798)
* feat: request registration process by prompt * fix merge * add prompt create to docs
This commit is contained in:
@@ -24,6 +24,7 @@ const (
|
||||
NextStepExternalLogin
|
||||
NextStepGrantRequired
|
||||
NextStepPasswordless
|
||||
NextStepRegistration
|
||||
)
|
||||
|
||||
type LoginStep struct{}
|
||||
@@ -32,6 +33,12 @@ func (s *LoginStep) Type() NextStepType {
|
||||
return NextStepLogin
|
||||
}
|
||||
|
||||
type RegistrationStep struct{}
|
||||
|
||||
func (s *RegistrationStep) Type() NextStepType {
|
||||
return NextStepRegistration
|
||||
}
|
||||
|
||||
type SelectUserStep struct {
|
||||
Users []UserSelection
|
||||
}
|
||||
|
Reference in New Issue
Block a user