Add trial request functionality for audit.

This commit is contained in:
Patrick Fic
2024-05-09 16:49:14 -07:00
parent 2f77f0fb45
commit 3a2a7c2a11
9 changed files with 67 additions and 4 deletions

View File

@@ -294,6 +294,11 @@ function openNoticeWindow() {
});
}
ipcMain.on(ipcTypes.app.toMain.setReleaseChannel, (event, channel) => {
autoUpdater.channel = channel;
checkForUpdates();
});
ipcMain.on(ipcTypes.app.toMain.checkForUpdates, (event, args) => {
checkForUpdates();
});