From 98121a2043ca5fac3c82a31dd2152a33172def70 Mon Sep 17 00:00:00 2001 From: Prashant Katwa Date: Wed, 14 Jan 2026 14:19:03 -0500 Subject: [PATCH 1/2] Fix zapier status page --- stts.xcodeproj/project.pbxproj | 6 +++--- stts/Services/StatusPage/Zapier.swift | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/stts.xcodeproj/project.pbxproj b/stts.xcodeproj/project.pbxproj index 9f88391..65f9adf 100644 --- a/stts.xcodeproj/project.pbxproj +++ b/stts.xcodeproj/project.pbxproj @@ -1481,7 +1481,7 @@ packageReferences = ( B20883E32A59143E007578C8 /* XCRemoteSwiftPackageReference "MBPopup" */, B20883E62A59144F007578C8 /* XCRemoteSwiftPackageReference "Kanna" */, - B20883E92A59146C007578C8 /* XCRemoteSwiftPackageReference "Reachability" */, + B20883E92A59146C007578C8 /* XCRemoteSwiftPackageReference "Reachability.swift" */, ); productRefGroup = B2B2D1001D49D5080014D780 /* Products */; projectDirPath = ""; @@ -2241,7 +2241,7 @@ minimumVersion = 5.0.0; }; }; - B20883E92A59146C007578C8 /* XCRemoteSwiftPackageReference "Reachability" */ = { + B20883E92A59146C007578C8 /* XCRemoteSwiftPackageReference "Reachability.swift" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/ashleymills/Reachability.swift"; requirement = { @@ -2264,7 +2264,7 @@ }; B20883EA2A59146C007578C8 /* Reachability */ = { isa = XCSwiftPackageProductDependency; - package = B20883E92A59146C007578C8 /* XCRemoteSwiftPackageReference "Reachability" */; + package = B20883E92A59146C007578C8 /* XCRemoteSwiftPackageReference "Reachability.swift" */; productName = Reachability; }; /* End XCSwiftPackageProductDependency section */ diff --git a/stts/Services/StatusPage/Zapier.swift b/stts/Services/StatusPage/Zapier.swift index ae203d3..acc0d59 100644 --- a/stts/Services/StatusPage/Zapier.swift +++ b/stts/Services/StatusPage/Zapier.swift @@ -5,7 +5,6 @@ import Foundation -final class Zapier: StatusPageService { +class Zapier: IncidentIOService { let url = URL(string: "https://status.zapier.com")! - let statusPageID = "vg334k121155" } From 85fa58e77a37b05c03d595825e9a6baca50f7d71 Mon Sep 17 00:00:00 2001 From: Prashant Katwa Date: Wed, 14 Jan 2026 14:23:14 -0500 Subject: [PATCH 2/2] move Zapier to IncidentIO folder --- stts/Services/{StatusPage => IncidentIO}/Zapier.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename stts/Services/{StatusPage => IncidentIO}/Zapier.swift (73%) diff --git a/stts/Services/StatusPage/Zapier.swift b/stts/Services/IncidentIO/Zapier.swift similarity index 73% rename from stts/Services/StatusPage/Zapier.swift rename to stts/Services/IncidentIO/Zapier.swift index acc0d59..1fee229 100644 --- a/stts/Services/StatusPage/Zapier.swift +++ b/stts/Services/IncidentIO/Zapier.swift @@ -5,6 +5,6 @@ import Foundation -class Zapier: IncidentIOService { +final class Zapier: IncidentIOService { let url = URL(string: "https://status.zapier.com")! }