Skip to content

Commit

Permalink
Merge pull request #2153 from openziti/fix.2087.ext.jwt.provider
Browse files Browse the repository at this point in the history
fixes #2087 sets provider to "URL" a generic type
  • Loading branch information
andrewpmartinez committed Jun 24, 2024
2 parents 506d9de + 10a79a0 commit d4d2454
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions controller/env/appenv.go
Original file line number Diff line number Diff line change
Expand Up @@ -577,9 +577,11 @@ func NewAuthQueryZitiMfa() *rest_model.AuthQueryDetail {
}

func NewAuthQueryExtJwt(url string) *rest_model.AuthQueryDetail {
provider := rest_model.MfaProvidersURL
return &rest_model.AuthQueryDetail{
HTTPURL: url,
TypeID: "EXT-JWT",
HTTPURL: url,
TypeID: "EXT-JWT",
Provider: &provider,
}
}

Expand Down

0 comments on commit d4d2454

Please sign in to comment.