[MM-16516] Add a "don't trust" option for certificates (#1733)

* Added checkbox to certificate not trusted modal

* Added functionality to store a dontTrust boolean with the certificate store
This commit is contained in:
John Willis
2021-09-14 05:16:04 -04:00
committed by GitHub
parent 20ec525819
commit 375da5bdb3
3 changed files with 26 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import {Certificate} from 'electron/common';
export type ComparableCertificate = {
data: string;
issuerName: string;
dontTrust: boolean;
}
export type CertificateModalData = {