From 63cccf15cdc7405c81c40257c33dc90304684cd2 Mon Sep 17 00:00:00 2001 From: Justin Mazzocchi <2831158+jzzocc@users.noreply.github.com> Date: Mon, 15 Feb 2021 14:20:59 -0800 Subject: [PATCH] Change domain --- .../Sources/ServiceLayer/Services/AuthenticationService.swift | 2 +- .../Sources/ServiceLayer/Services/IdentityService.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ServiceLayer/Sources/ServiceLayer/Services/AuthenticationService.swift b/ServiceLayer/Sources/ServiceLayer/Services/AuthenticationService.swift index 9c0c82f..9bebb2e 100644 --- a/ServiceLayer/Sources/ServiceLayer/Services/AuthenticationService.swift +++ b/ServiceLayer/Sources/ServiceLayer/Services/AuthenticationService.swift @@ -66,7 +66,7 @@ private extension AuthenticationService { static let callbackURLScheme = "metatext" static let authorizationCallbackURL = URL(string: "\(callbackURLScheme)://oauth.callback")! static let registrationCallbackURL = URL(string: "https://metatext.link/confirmation")! - static let website = URL(string: "https://metabolist.com/metatext")! + static let website = URL(string: "https://metabolist.org/metatext")! } enum OAuthError: Error { diff --git a/ServiceLayer/Sources/ServiceLayer/Services/IdentityService.swift b/ServiceLayer/Sources/ServiceLayer/Services/IdentityService.swift index d7005f9..2c735d2 100644 --- a/ServiceLayer/Sources/ServiceLayer/Services/IdentityService.swift +++ b/ServiceLayer/Sources/ServiceLayer/Services/IdentityService.swift @@ -295,8 +295,8 @@ public extension IdentityService { private extension IdentityService { #if DEBUG - static let pushSubscriptionEndpointURL = URL(string: "https://metatext-apns.metabolist.com/push?sandbox=true")! + static let pushSubscriptionEndpointURL = URL(string: "https://metatext-apns.metabolist.org/push?sandbox=true")! #else - static let pushSubscriptionEndpointURL = URL(string: "https://metatext-apns.metabolist.com/push")! + static let pushSubscriptionEndpointURL = URL(string: "https://metatext-apns.metabolist.org/push")! #endif }