feat: app.zitare.com + api.zitare.com URLs für Cutover 2026-05-20
Native-Konstanten ziehen mit dem Web-Cutover zu .zitare.com- Subdomains nach. Universal-Link-AASA-Liste enthält jetzt zitare.com + app.zitare.com (zitare.mana.how raus). webBaseURL ist jetzt das echte publicWebURL (zitare.com), wie ursprünglich geplant. CookieBridge bleibt Skeleton — die `.mana.how`-Cookie-Domain- Strategie greift nicht für `.zitare.com`. Hinweis im Kommentar gesetzt, Update vor ζ-3 nötig. Code-Only. Erst nach nächstem Native-Build/TestFlight-Upload live. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
8b572329fc
commit
a4ea32b637
6 changed files with 45 additions and 48 deletions
|
|
@ -17,20 +17,18 @@ final class AppConfigTests: XCTestCase {
|
|||
}
|
||||
|
||||
func test_apiBaseURL_pointsToZitareApi() {
|
||||
XCTAssertEqual(AppConfig.apiBaseURL.absoluteString, "https://zitare-api.mana.how")
|
||||
XCTAssertEqual(AppConfig.apiBaseURL.absoluteString, "https://api.zitare.com")
|
||||
}
|
||||
|
||||
func test_webBaseURL_currentDefault() {
|
||||
// Übergang: zitare.com hat noch keinen DNS-Record (Cloudflare-Zone-
|
||||
// Onboarding offen), deshalb fällt webBaseURL aktuell auf
|
||||
// appBaseURL zurück. Nach Cloudflare-Cut wird das wieder
|
||||
// publicWebURL — Test dann anpassen.
|
||||
XCTAssertEqual(AppConfig.webBaseURL.absoluteString, "https://zitare.mana.how")
|
||||
func test_webBaseURL_isPublicCom() {
|
||||
// Cutover 2026-05-20: zitare.com ist live, webBaseURL zeigt
|
||||
// auf das öffentliche Lese-Surface.
|
||||
XCTAssertEqual(AppConfig.webBaseURL.absoluteString, "https://zitare.com")
|
||||
XCTAssertEqual(AppConfig.publicWebURL.absoluteString, "https://zitare.com")
|
||||
}
|
||||
|
||||
func test_appBaseURL_isManaHowSurface() {
|
||||
XCTAssertEqual(AppConfig.appBaseURL.absoluteString, "https://zitare.mana.how")
|
||||
func test_appBaseURL_isAppZitareCom() {
|
||||
XCTAssertEqual(AppConfig.appBaseURL.absoluteString, "https://app.zitare.com")
|
||||
}
|
||||
|
||||
func test_appGroup_matchesEntitlement() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue