File tree 1 file changed +3
-3
lines changed
WordPress/Classes/Models/Blog
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import CryptoKit
3
3
import WordPressAPI
4
4
import WordPressShared
5
5
6
- extension Blog {
6
+ public extension Blog {
7
7
8
8
enum BlogCredentialsError : Error {
9
9
case blogUrlMissing
@@ -52,7 +52,7 @@ extension Blog {
52
52
53
53
/// Retrieve Application Tokens
54
54
///
55
- public func getApplicationToken( using keychainImplementation: KeychainAccessible = KeychainUtils ( ) ) throws -> String {
55
+ func getApplicationToken( using keychainImplementation: KeychainAccessible = KeychainUtils ( ) ) throws -> String {
56
56
try keychainImplementation. getPassword ( for: self . getUsername ( ) , serviceName: self . getUrlString ( ) )
57
57
}
58
58
@@ -64,7 +64,7 @@ extension Blog {
64
64
65
65
@available ( swift, obsoleted: 1.0 )
66
66
@objc ( deleteApplicationToken)
67
- public func objc_deleteApplicationToken( ) {
67
+ func objc_deleteApplicationToken( ) {
68
68
_ = try ? deleteApplicationToken ( )
69
69
}
70
70
You can’t perform that action at this time.
0 commit comments