194491759d
* migrating to chrismalek/oktasdk-go Okta library * updating path docs * updating bool reference from config
9 lines
233 B
Go
9 lines
233 B
Go
package okta
|
|
|
|
const (
|
|
// MFAStatusActive is a constant to represent OKTA User State returned by the API
|
|
MFAStatusActive = "ACTIVE"
|
|
// MFAStatusPending is a user MFA Status of NOT Active
|
|
MFAStatusPending = "PENDING_ACTIVATION"
|
|
)
|