Skip to content

Commit

Permalink
Merge branch 'release/1.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
tobihagemann committed Apr 18, 2024
2 parents 6a2e043 + 5ac54b3 commit cd7a18a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import Foundation
public class GoogleDriveSetup {
public static var constants: GoogleDriveSetup!

let clientId: String
let redirectURL: URL
let sharedContainerIdentifier: String?
public let clientId: String
public let redirectURL: URL
public let sharedContainerIdentifier: String?

public init(clientId: String, redirectURL: URL, sharedContainerIdentifier: String?) {
self.clientId = clientId
Expand Down
4 changes: 2 additions & 2 deletions Sources/CryptomatorCloudAccess/OneDrive/OneDriveSetup.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import MSAL
public class OneDriveSetup {
public static var constants: OneDriveSetup!

let clientApplication: MSALPublicClientApplication
let sharedContainerIdentifier: String?
public let clientApplication: MSALPublicClientApplication
public let sharedContainerIdentifier: String?

public init(clientApplication: MSALPublicClientApplication, sharedContainerIdentifier: String?) {
self.clientApplication = clientApplication
Expand Down
4 changes: 2 additions & 2 deletions Sources/CryptomatorCloudAccess/PCloud/PCloudSetup.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import Foundation
public class PCloudSetup {
public static var constants: PCloudSetup!

let appKey: String
let sharedContainerIdentifier: String?
public let appKey: String
public let sharedContainerIdentifier: String?

public init(appKey: String, sharedContainerIdentifier: String?) {
self.appKey = appKey
Expand Down

0 comments on commit cd7a18a

Please sign in to comment.