mirror of
https://github.com/teamhanko/hanko.git
synced 2025-10-28 23:30:15 +08:00
17 lines
702 B
Go
17 lines
702 B
Go
package shared
|
|
|
|
import "github.com/teamhanko/hanko/backend/v2/flowpilot"
|
|
|
|
const (
|
|
FlowCapabilities flowpilot.FlowName = "capabilities"
|
|
FlowCredentialOnboarding flowpilot.FlowName = "credential_onboarding"
|
|
FlowCredentialUsage flowpilot.FlowName = "credential_usage"
|
|
FlowDeviceTrust flowpilot.FlowName = "device_trust"
|
|
FlowLogin flowpilot.FlowName = "login"
|
|
FlowMFACreation flowpilot.FlowName = "mfa_creation"
|
|
FlowProfile flowpilot.FlowName = "profile"
|
|
FlowRegistration flowpilot.FlowName = "registration"
|
|
FlowUserDetails flowpilot.FlowName = "user_details"
|
|
FlowMFAUsage flowpilot.FlowName = "mfa_usage"
|
|
)
|