mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-20 17:16:46 +00:00
feat(GODT-2771): macOS cert install support in bridge-gui-test + placeholder QML.
This commit is contained in:
@ -804,11 +804,11 @@ grpc::Status GRPCClient::setCurrentKeychain(QString const &keychain) {
|
||||
|
||||
|
||||
//****************************************************************************************************************************************************
|
||||
/// \param[out] isInstalled is The Bridge certificate installed in the keychain.
|
||||
/// \param[out] outIsInstalled is The Bridge certificate installed in the keychain.
|
||||
/// \return The status for the call
|
||||
//****************************************************************************************************************************************************
|
||||
grpc::Status GRPCClient::isTLSCertificateInstalled(bool isInstalled) {
|
||||
return this->logGRPCCallStatus(this->getBool(&Bridge::Stub::IsTLSCertificateInstalled, isInstalled), __FUNCTION__);
|
||||
grpc::Status GRPCClient::isTLSCertificateInstalled(bool &outIsInstalled) {
|
||||
return this->logGRPCCallStatus(this->getBool(&Bridge::Stub::IsTLSCertificateInstalled, outIsInstalled), __FUNCTION__);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -204,7 +204,7 @@ public: // keychain related calls
|
||||
grpc::Status setCurrentKeychain(QString const &keychain);
|
||||
|
||||
public: // cert related calls
|
||||
grpc::Status isTLSCertificateInstalled(bool isInstalled); ///< Perform the 'IsTLSCertificateInstalled' gRPC call.
|
||||
grpc::Status isTLSCertificateInstalled(bool &outIsInstalled); ///< Perform the 'IsTLSCertificateInstalled' gRPC call.
|
||||
grpc::Status installTLSCertificate(); ///< Perform the 'InstallTLSCertificate' gRPC call.
|
||||
grpc::Status exportTLSCertificates(QString const &folderPath); ///< Performs the 'ExportTLSCertificates' gRPC call.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user