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 (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
squizr authored and nickatsegment committed Aug 28, 2019
1 parent b4e7839 commit 9ea04f1
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 @@ -444,6 +444,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 9ea04f1

Please sign in to comment.