mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:27:42 +00:00
feat: display login succeeded page only for native apps (#2839)
This commit is contained in:
@@ -28,6 +28,7 @@ const (
|
||||
NextStepRegistration
|
||||
NextStepProjectRequired
|
||||
NextStepRedirectToExternalIDP
|
||||
NextStepLoginSucceeded
|
||||
)
|
||||
|
||||
type LoginStep struct{}
|
||||
@@ -180,3 +181,9 @@ type RedirectToCallbackStep struct{}
|
||||
func (s *RedirectToCallbackStep) Type() NextStepType {
|
||||
return NextStepRedirectToCallback
|
||||
}
|
||||
|
||||
type LoginSucceededStep struct{}
|
||||
|
||||
func (s *LoginSucceededStep) Type() NextStepType {
|
||||
return NextStepLoginSucceeded
|
||||
}
|
||||
|
Reference in New Issue
Block a user