about summary refs log tree commit diff
path: root/app/assets/javascripts/components/actions/alerts.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/components/actions/alerts.jsx')
-rw-r--r--app/assets/javascripts/components/actions/alerts.jsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/assets/javascripts/components/actions/alerts.jsx b/app/assets/javascripts/components/actions/alerts.jsx
deleted file mode 100644
index 086e0727e..000000000
--- a/app/assets/javascripts/components/actions/alerts.jsx
+++ /dev/null
@@ -1,24 +0,0 @@
-export const ALERT_SHOW    = 'ALERT_SHOW';
-export const ALERT_DISMISS = 'ALERT_DISMISS';
-export const ALERT_CLEAR   = 'ALERT_CLEAR';
-
-export function dismissAlert(alert) {
-  return {
-    type: ALERT_DISMISS,
-    alert
-  };
-};
-
-export function clearAlert() {
-  return {
-    type: ALERT_CLEAR
-  };
-};
-
-export function showAlert(title, message) {
-  return {
-    type: ALERT_SHOW,
-    title,
-    message
-  };
-};