Skip to content
Snippets Groups Projects
Commit 8fe06620 authored by Kateryna Kostiuk's avatar Kateryna Kostiuk Committed by Sébastien Blin
Browse files

device revocation: emit signal


Change-Id: I1a828d1ea1b0fef2501b471129ade0bbd86fcf6f
Reviewed-by: default avatarSebastien Blin <sebastien.blin@savoirfairelinux.com>
parent 6bfbd98a
No related branches found
No related tags found
No related merge requests found
......@@ -122,6 +122,10 @@ public:
[this] (const std::string &accountId, const std::map<std::string, std::string>& devices) {
Q_EMIT this->knownDevicesChanged(QString(accountId.c_str()), convertMap(devices));
}),
exportable_callback<ConfigurationSignal::DeviceRevocationEnded>(
[this] (const std::string &accountId, const std::string &device, int status) {
Q_EMIT this->deviceRevocationEnded(QString(accountId.c_str()), QString(device.c_str()), status);
}),
exportable_callback<ConfigurationSignal::ExportOnRingEnded>(
[this] (const std::string &accountId, int status, const std::string &pin) {
Q_EMIT this->exportOnRingEnded(QString(accountId.c_str()), status, QString(pin.c_str()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment