This repository was archived by the owner on Sep 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ _None._
47
47
### New Features
48
48
49
49
- Add ` tag ` parameter to ` PostServiceRemoteOptions ` [ #634 ]
50
+ - Add ` transfer ` case to ` DomainType ` case [ #642 ]
50
51
51
52
## 8.10.0
52
53
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import Foundation
4
4
case registered
5
5
case mapped
6
6
case siteRedirect
7
+ case transfer
7
8
case wpCom
8
9
9
10
public var description : String {
@@ -16,6 +17,8 @@ import Foundation
16
17
return NSLocalizedString ( " Site Redirect " , comment: " Describes a site redirect domain " )
17
18
case . wpCom:
18
19
return NSLocalizedString ( " Included with Site " , comment: " Describes a standard *.wordpress.com site domain " )
20
+ case . transfer:
21
+ return NSLocalizedString ( " Transferred Domain " , comment: " Describes a domain that was transferred from elsewhere to wordpress.com " )
19
22
}
20
23
}
21
24
@@ -30,6 +33,8 @@ import Foundation
30
33
init ( type: String ? , wpComDomain: Bool ? , hasRegistration: Bool ? ) {
31
34
if type == " redirect " {
32
35
self = . siteRedirect
36
+ } else if type == " transfer " {
37
+ self = . transfer
33
38
} else if wpComDomain == true {
34
39
self = . wpCom
35
40
} else if hasRegistration == true {
You can’t perform that action at this time.
0 commit comments