From 890edf40157852c5326f3ce8b8d497593a38f4ab Mon Sep 17 00:00:00 2001 From: Marat Alekperov Date: Fri, 8 May 2026 17:06:10 +0200 Subject: [PATCH 1/2] fix(push-guides): restructure APNs, FCM, and web push guides to match react-native/flutter layout - Add Step 5 "Publish a push notification" with CLI-only publish (client-id + channel sub-steps) - Remove send-with-code examples from all three guides - Remove push-admin Aside (info already in prerequisites) - Align Step 3 opening text across all guides - Update "send push notifications" to "publish push notifications" throughout - Restore service worker description sentence in web guide - APNs Step 6 (location pushes) renumbered from Step 7 after removing send-with-code step Co-Authored-By: Claude Sonnet 4.6 --- src/pages/docs/push/getting-started/apns.mdx | 274 ++---------- src/pages/docs/push/getting-started/fcm.mdx | 389 ++++++------------ .../docs/push/getting-started/flutter.mdx | 8 +- .../push/getting-started/react-native.mdx | 10 +- src/pages/docs/push/getting-started/web.mdx | 226 ++-------- 5 files changed, 211 insertions(+), 696 deletions(-) diff --git a/src/pages/docs/push/getting-started/apns.mdx b/src/pages/docs/push/getting-started/apns.mdx index 3a0f707c3c..7e1d3587bd 100644 --- a/src/pages/docs/push/getting-started/apns.mdx +++ b/src/pages/docs/push/getting-started/apns.mdx @@ -6,7 +6,7 @@ meta_keywords: "Push Notifications Swift, Ably Push, APNs, iOS Push, Swift push This guide will get you started with Ably Push Notifications in a new SwiftUI application. -You'll learn how to set up your `AppDelegate` to manage push notifications, register devices with Ably, send push notifications, subscribe to channel-based push, handle incoming notifications, and implement location-based push notifications. +You'll learn how to set up your `AppDelegate` to manage push notifications, register devices with Ably, publish push notifications, subscribe to channel-based push, handle incoming notifications, and implement location-based push notifications.