forked from Silverfish/proton-bridge
fix(GODT-2442): GUI changes for new bad event dialog.
This commit is contained in:
@ -675,6 +675,18 @@ grpc::Status GRPCClient::setUserSplitMode(QString const &userID, bool active) {
|
||||
}
|
||||
|
||||
|
||||
//****************************************************************************************************************************************************
|
||||
/// \param[in] userID The userID.
|
||||
/// \param[in] doResync Did the user request a resync.
|
||||
//****************************************************************************************************************************************************
|
||||
grpc::Status GRPCClient::sendBadEventUserFeedback(QString const &userID, bool doResync) {
|
||||
UserBadEventFeedbackRequest request;
|
||||
request.set_userid(userID.toStdString());
|
||||
request.set_doresync(doResync);
|
||||
return this->logGRPCCallStatus(stub_->SendBadEventUserFeedback(this->clientContext().get(), request, &empty), __FUNCTION__);
|
||||
}
|
||||
|
||||
|
||||
//****************************************************************************************************************************************************
|
||||
/// \param[out] outUsers The user list.
|
||||
/// \return The status code for the gRPC call.
|
||||
|
||||
@ -173,6 +173,7 @@ public: // user related calls
|
||||
grpc::Status removeUser(QString const &userID); ///< Performs the 'removeUser' call.
|
||||
grpc::Status configureAppleMail(QString const &userID, QString const &address); ///< Performs the 'configureAppleMail' call.
|
||||
grpc::Status setUserSplitMode(QString const &userID, bool active); ///< Performs the 'SetUserSplitMode' call.
|
||||
grpc::Status sendBadEventUserFeedback(QString const& userID, bool doResync); ///< Performs the 'SendBadEventUserFeedback' call.
|
||||
|
||||
signals:
|
||||
void toggleSplitModeFinished(QString const &userID);
|
||||
|
||||
Reference in New Issue
Block a user