summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ios/MullvadVPN/REST/RESTAccountsProxy.swift2
-rw-r--r--ios/MullvadVPN/REST/RESTAuthenticationProxy.swift2
-rw-r--r--ios/MullvadVPN/REST/RESTDevicesProxy.swift2
3 files changed, 3 insertions, 3 deletions
diff --git a/ios/MullvadVPN/REST/RESTAccountsProxy.swift b/ios/MullvadVPN/REST/RESTAccountsProxy.swift
index 2bc05e088c..2862b586d6 100644
--- a/ios/MullvadVPN/REST/RESTAccountsProxy.swift
+++ b/ios/MullvadVPN/REST/RESTAccountsProxy.swift
@@ -15,7 +15,7 @@ extension REST {
name: "AccountsProxy",
configuration: configuration,
requestFactory: RequestFactory.withDefaultAPICredentials(
- pathPrefix: "/accounts/v1-beta1",
+ pathPrefix: "/accounts/v1",
bodyEncoder: Coding.makeJSONEncoder()
),
responseDecoder: ResponseDecoder(
diff --git a/ios/MullvadVPN/REST/RESTAuthenticationProxy.swift b/ios/MullvadVPN/REST/RESTAuthenticationProxy.swift
index c4ab8e9d04..a5fb192d99 100644
--- a/ios/MullvadVPN/REST/RESTAuthenticationProxy.swift
+++ b/ios/MullvadVPN/REST/RESTAuthenticationProxy.swift
@@ -15,7 +15,7 @@ extension REST {
name: "AuthenticationProxy",
configuration: configuration,
requestFactory: RequestFactory.withDefaultAPICredentials(
- pathPrefix: "/auth/v1-beta1",
+ pathPrefix: "/auth/v1",
bodyEncoder: Coding.makeJSONEncoder()
),
responseDecoder: ResponseDecoder(
diff --git a/ios/MullvadVPN/REST/RESTDevicesProxy.swift b/ios/MullvadVPN/REST/RESTDevicesProxy.swift
index 698c51681b..d7e79b2236 100644
--- a/ios/MullvadVPN/REST/RESTDevicesProxy.swift
+++ b/ios/MullvadVPN/REST/RESTDevicesProxy.swift
@@ -17,7 +17,7 @@ extension REST {
name: "DevicesProxy",
configuration: configuration,
requestFactory: RequestFactory.withDefaultAPICredentials(
- pathPrefix: "/accounts/v1-beta1",
+ pathPrefix: "/accounts/v1",
bodyEncoder: Coding.makeJSONEncoder()
),
responseDecoder: ResponseDecoder(