Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
Add Symantec VIP Access MFA
Browse files Browse the repository at this point in the history
  • Loading branch information
squizr committed Aug 21, 2019
1 parent 68ae462 commit aec8887
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/okta.go
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,12 @@ func GetFactorId(f *OktaUserAuthnFactor) (id string, err error) {
switch f.FactorType {
case "web":
id = f.Id
case "token":
if f.Provider == "SYMANTEC" {
id = f.Id
} else {
err = fmt.Errorf("provider %s with factor token not supported", f.Provider)
}
case "token:software:totp":
id = f.Id
case "token:hardware":
Expand Down

0 comments on commit aec8887

Please sign in to comment.