Skip to content

Commit caa0730

Browse files
committed
Update access level for some methods that will soon be in WordPressData
1 parent f829300 commit caa0730

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

WordPress/Classes/Models/Blog/Blog+SelfHosted.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import CryptoKit
33
import WordPressAPI
44
import WordPressShared
55

6-
extension Blog {
6+
public extension Blog {
77

88
enum BlogCredentialsError: Error {
99
case blogUrlMissing
@@ -52,7 +52,7 @@ extension Blog {
5252

5353
/// Retrieve Application Tokens
5454
///
55-
public func getApplicationToken(using keychainImplementation: KeychainAccessible = KeychainUtils()) throws -> String {
55+
func getApplicationToken(using keychainImplementation: KeychainAccessible = KeychainUtils()) throws -> String {
5656
try keychainImplementation.getPassword(for: self.getUsername(), serviceName: self.getUrlString())
5757
}
5858

@@ -64,7 +64,7 @@ extension Blog {
6464

6565
@available(swift, obsoleted: 1.0)
6666
@objc(deleteApplicationToken)
67-
public func objc_deleteApplicationToken() {
67+
func objc_deleteApplicationToken() {
6868
_ = try? deleteApplicationToken()
6969
}
7070

0 commit comments

Comments
 (0)