This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-12-24 18:52:19 +00:00
|
|
|
package flow
|
|
|
|
|
|
|
|
type StageComponent string
|
|
|
|
|
|
|
|
const (
|
2023-03-15 19:21:05 +00:00
|
|
|
StageAccessDenied = StageComponent("ak-stage-access-denied")
|
|
|
|
StageAuthenticatorValidate = StageComponent("ak-stage-authenticator-validate")
|
2021-12-24 18:52:19 +00:00
|
|
|
StageIdentification = StageComponent("ak-stage-identification")
|
|
|
|
StagePassword = StageComponent("ak-stage-password")
|
2023-03-15 19:21:05 +00:00
|
|
|
StageUserLogin = StageComponent("ak-stage-user-login")
|
2021-12-24 18:52:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
HeaderAuthentikRemoteIP = "X-authentik-remote-ip"
|
|
|
|
HeaderAuthentikOutpostToken = "X-authentik-outpost-token"
|
|
|
|
)
|