mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 03:26:14 +00:00
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
|
import { webFrame } from 'electron';
|
||
|
import { PROTOCOL_NAME } from 'shared/enclave/utils';
|
||
|
|
||
|
export function registerProtocol() {
|
||
|
// Whitelist custom protocol
|
||
|
webFrame.registerURLSchemeAsPrivileged(PROTOCOL_NAME);
|
||
|
}
|