We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e5712d commit b69c5b3Copy full SHA for b69c5b3
Sources/OktaOidc/Common/OktaOidcConfig.swift
@@ -33,8 +33,13 @@ public class OktaOidcConfig: NSObject {
33
34
@objc public var tokenValidator: OKTTokenValidator = OKTDefaultTokenValidator()
35
36
+ private var _noSSO = false
37
+
38
@available(iOS 13.0, *)
- @objc public lazy var noSSO = false
39
+ @objc public var noSSO: Bool {
40
+ get { _noSSO }
41
+ set { _noSSO = newValue }
42
+ }
43
44
@objc public let additionalParams: [String: String]?
45
0 commit comments