about summary refs log tree commit diff
path: root/app/javascript/mastodon/actions/modal.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/actions/modal.js')
-rw-r--r--app/javascript/mastodon/actions/modal.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/javascript/mastodon/actions/modal.js b/app/javascript/mastodon/actions/modal.js
new file mode 100644
index 000000000..615cd6bfe
--- /dev/null
+++ b/app/javascript/mastodon/actions/modal.js
@@ -0,0 +1,16 @@
+export const MODAL_OPEN  = 'MODAL_OPEN';
+export const MODAL_CLOSE = 'MODAL_CLOSE';
+
+export function openModal(type, props) {
+  return {
+    type: MODAL_OPEN,
+    modalType: type,
+    modalProps: props
+  };
+};
+
+export function closeModal() {
+  return {
+    type: MODAL_CLOSE
+  };
+};