Change domain

This commit is contained in:
Justin Mazzocchi 2021-02-15 14:20:59 -08:00
parent a5483a87d2
commit 63cccf15cd
No known key found for this signature in database
GPG key ID: E223E6937AAFB01C
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ private extension AuthenticationService {
static let callbackURLScheme = "metatext" static let callbackURLScheme = "metatext"
static let authorizationCallbackURL = URL(string: "\(callbackURLScheme)://oauth.callback")! static let authorizationCallbackURL = URL(string: "\(callbackURLScheme)://oauth.callback")!
static let registrationCallbackURL = URL(string: "https://metatext.link/confirmation")! 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 { enum OAuthError: Error {

View file

@ -295,8 +295,8 @@ public extension IdentityService {
private extension IdentityService { private extension IdentityService {
#if DEBUG #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 #else
static let pushSubscriptionEndpointURL = URL(string: "https://metatext-apns.metabolist.com/push")! static let pushSubscriptionEndpointURL = URL(string: "https://metatext-apns.metabolist.org/push")!
#endif #endif
} }