Skip to content

Commit

Permalink
Group content
Browse files Browse the repository at this point in the history
  • Loading branch information
timuric committed Jul 3, 2024
1 parent 9cd7af2 commit c4ad208
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 32 deletions.
1 change: 1 addition & 0 deletions docs/upgrade-guides/notify-user-deprecation.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Migrating from NOTIFY_USER to dedicated events
sidebar_label: Migrating from NOTIFY_USER
---

Starting from Saleor 3.16, the `NOTIFY_USER` webhook event will be deprecated. If your app uses this webhook, you should migrate to dedicated webhook events. The following is a list of webhook events that replace specific notifications. All webhook events that replace `NOTIFY_USER` support [subscription queries](developer/extending/webhooks/subscription-webhook-payloads.mdx#custom-payloads), which allow you to define the payload you want to receive for your notifications.
Expand Down
57 changes: 25 additions & 32 deletions sidebars/self-hosting.js
Original file line number Diff line number Diff line change
@@ -1,42 +1,35 @@
import { title } from "./utils";

export const selfHosting = [
"setup/overview",
"setup/docker-compose",
"setup/docker-images",
"setup/configuration",
"setup/read-replicas",
"setup/windows",

title("Development"),

"developer/running-saleor/debugging-emails",
"developer/running-saleor/exposing-instance",

title("Deploying"),

"setup/deploy-do",
"setup/deploy-kubernetes",
"setup/deploy-linux",

title("Monitoring"),
"setup/monitoring-jaeger",
"setup/monitoring-sentry",

title("Storing Files"),
"setup/media-gcs",
"setup/media-s3",

title("Upgrade Guides"),
{
type: "category",
label: "Development",
items: [
"developer/running-saleor/debugging-emails",
"developer/running-saleor/exposing-instance",
],
},
{
type: "category",
label: "Deploying",
items: ["setup/deploy-do", "setup/deploy-kubernetes", "setup/deploy-linux"],
},
{
type: "category",
label: "Monitoring",
items: ["setup/monitoring-jaeger", "setup/monitoring-sentry"],
},
{
type: "category",
label: "Storing Files",
items: ["setup/media-gcs", "setup/media-s3"],
},
{
type: "category",
label: "Upgrade Guides",
items: [
"setup/upgrading",
{
type: "autogenerated",
dirName: "upgrade-guides",
},
],
type: "autogenerated",
dirName: "upgrade-guides",
},
];

0 comments on commit c4ad208

Please sign in to comment.