From 7860f2142c2f4c9ad13ba641f225fab30bbab049 Mon Sep 17 00:00:00 2001 From: binwiederhier Date: Sun, 8 Feb 2026 15:11:06 -0500 Subject: [PATCH] Constants --- web/src/app/actions.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 web/src/app/actions.js diff --git a/web/src/app/actions.js b/web/src/app/actions.js new file mode 100644 index 00000000..43775b09 --- /dev/null +++ b/web/src/app/actions.js @@ -0,0 +1,7 @@ +// Action types for ntfy messages +// These correspond to the server action types in server/actions.go + +export const ACTION_VIEW = "view"; +export const ACTION_BROADCAST = "broadcast"; +export const ACTION_HTTP = "http"; +export const ACTION_COPY = "copy";