Replaced electron-settings with store. Implemented job upsert logic.
This commit is contained in:
10
electron/notification-wrapper/notification-wrapper.js
Normal file
10
electron/notification-wrapper/notification-wrapper.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const { Notification } = require("electron");
|
||||
const path = require("path");
|
||||
|
||||
function NewNotification(config) {
|
||||
return Notification({
|
||||
icon: path.join(__dirname, "../../src/assets/logo512.png"),
|
||||
...config,
|
||||
});
|
||||
}
|
||||
exports.NewNotification = NewNotification;
|
||||
Reference in New Issue
Block a user