diff options
Diffstat (limited to 'internal/handlers/types.go')
| -rw-r--r-- | internal/handlers/types.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/handlers/types.go b/internal/handlers/types.go index 7efba826d..c23b0bd57 100644 --- a/internal/handlers/types.go +++ b/internal/handlers/types.go @@ -117,6 +117,13 @@ type bodyFirstFactorRequest struct { // TODO(c.michaud): add required validation once the above PR is merged. } +type bodyFirstFactorSPNEGOequest struct { + Workflow string `json:"workflow"` + WorkflowID string `json:"workflowID"` + TargetURL string `json:"targetURL"` + RequestMethod string `json:"requestMethod"` +} + // bodyFirstFactorRequest represents the JSON body received by the endpoint. type bodySecondFactorPasswordRequest struct { Password string `json:"password" valid:"required"` |
