From 63cf7cc8e58169035df35d1b329b6da028ec8f3e Mon Sep 17 00:00:00 2001 From: Marat Alekperov Date: Fri, 8 May 2026 17:06:10 +0200 Subject: [PATCH] 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 | 276 ++----------- src/pages/docs/push/getting-started/fcm.mdx | 391 ++++++------------ .../docs/push/getting-started/flutter.mdx | 10 +- .../push/getting-started/react-native.mdx | 10 +- src/pages/docs/push/getting-started/web.mdx | 232 ++--------- 5 files changed, 217 insertions(+), 702 deletions(-) diff --git a/src/pages/docs/push/getting-started/apns.mdx b/src/pages/docs/push/getting-started/apns.mdx index cce663c4b0..fa8956e98d 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.