Skip to content

Commit

Permalink
feat(Auth) Keychain Sharing (App Reload Required)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaroluchko committed Aug 12, 2024
1 parent 8030a13 commit f460f6a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ public struct AWSCognitoSecureStoragePreferences {

/// The access group that the keychain will use for auth items
public let accessGroup: AccessGroup?

public let migrateKeychainItemsOfUserSession: Bool

public init(accessGroup: AccessGroup? = nil) {
public init(accessGroup: AccessGroup? = nil, migrateKeychainItemsOfUserSession: Bool = true) {
self.accessGroup = accessGroup
self.migrateKeychainItemsOfUserSession = migrateKeychainItemsOfUserSession
}
}

0 comments on commit f460f6a

Please sign in to comment.