2018-04-29 20:04:34 +00:00
|
|
|
import { webFrame } from 'electron';
|
|
|
|
import { PROTOCOL_NAME } from 'shared/enclave/utils';
|
|
|
|
|
2018-05-04 15:56:17 +00:00
|
|
|
export function registerProtocol() {
|
2018-04-30 17:17:17 +00:00
|
|
|
// Whitelist custom protocol
|
2018-04-29 20:04:34 +00:00
|
|
|
webFrame.registerURLSchemeAsPrivileged(PROTOCOL_NAME);
|
|
|
|
}
|