aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions/addon.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/actions/addon.js')
-rw-r--r--src/content/actions/addon.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/content/actions/addon.js b/src/content/actions/addon.js
new file mode 100644
index 0000000..8d38025
--- /dev/null
+++ b/src/content/actions/addon.js
@@ -0,0 +1,15 @@
+import actions from 'content/actions';
+
+const enable = () => {
+ return { type: actions.ADDON_ENABLE };
+};
+
+const disable = () => {
+ return { type: actions.ADDON_DISABLE };
+};
+
+const toggleEnabled = () => {
+ return { type: actions.ADDON_TOGGLE_ENABLED };
+};
+
+export { enable, disable, toggleEnabled };