diff --git a/class/quick-actions.windows.js b/class/quick-actions.windows.js new file mode 100644 index 000000000..a56acf66b --- /dev/null +++ b/class/quick-actions.windows.js @@ -0,0 +1,13 @@ +function DeviceQuickActions() { + DeviceQuickActions.STORAGE_KEY = 'DeviceQuickActionsEnabled'; + + DeviceQuickActions.setEnabled = () => {}; + + DeviceQuickActions.getEnabled = async () => { + return false; + }; + + return null; +} + +export default DeviceQuickActions;