Skip to content

Commit 14279ad

Browse files
authored
Merge pull request #645 from Iterable/evan/MOB-6317-Dataregion-Enum-Fix
[MOB-6317] make data region enum accessible
2 parents df089b8 + 418d174 commit 14279ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

swift-sdk/Constants.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,9 @@ enum JsonValue {
267267
}
268268
}
269269

270-
enum IterableDataRegion {
271-
static let US = "https://api.iterable.com/api/"
272-
static let EU = "https://api.eu.iterable.com/api/"
270+
public enum IterableDataRegion {
271+
public static let US = "https://api.iterable.com/api/"
272+
public static let EU = "https://api.eu.iterable.com/api/"
273273
}
274274

275275
public protocol JsonValueRepresentable {

0 commit comments

Comments
 (0)