aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/basicAuth/mainIpcHandler.js
blob: 87ac0b6df0b52152da0ccbaa0e0889765949e0ca (plain) (blame)
1
2
3
4
5
6
7
8
9
const debug = require('debug')('Franz:feature:basicAuth:main');

export default function mainIpcHandler(mainWindow, authInfo) {
  debug('Sending basic auth call', authInfo);

  mainWindow.webContents.send('feature:basic-auth', {
    authInfo,
  });
}