You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data (or maybe config is a better wording) will be a validated zod schema based on the provider.
UI: Extend the SubscribeButton to include new DropdownMenuItems. Open a Dialog with a form and the input field to enter the data values based on the provider selected.
Plan: It will be available for paid users in general and requires to update the limits object.
To keep in mind: Right now, users can only subscribe to an entire page - not component specific. We'd like to allow users to subscribe to specific monitors in the future. That should not be a problem. We can either create a monitorIds: text("monitor_ids") column where monitorIds.split(",") and monitorIds.join(",") and saved in the db within a single entry - or, create a relational table schema like page_notification_to_monitor. That should work for page_subscriber as well.
The text was updated successfully, but these errors were encountered:
Description
Right now, we can subscribe to a status page via RSS/Atom and Email.
We'd like to include Apps/Integrations like Slack/Discord/Microsoft Teams where all are heavily work on webhook notifications.
Schema: Reminds a bit like the Notifications tab in the Dashboard.
The
data
(or maybeconfig
is a better wording) will be a validated zod schema based on the provider.UI: Extend the
SubscribeButton
to include newDropdownMenuItems
. Open aDialog
with a form and the input field to enter the data values based on the provider selected.Plan: It will be available for paid users in general and requires to update the
limits
object.To keep in mind: Right now, users can only subscribe to an entire page - not component specific. We'd like to allow users to subscribe to specific monitors in the future. That should not be a problem. We can either create a
monitorIds: text("monitor_ids")
column wheremonitorIds.split(",")
andmonitorIds.join(",")
and saved in the db within a single entry - or, create a relational table schema likepage_notification_to_monitor
. That should work forpage_subscriber
as well.The text was updated successfully, but these errors were encountered: