@@ -120,6 +120,7 @@ class Q_DATASYNC_EXPORT AccountManager : public QObject
120120{
121121 Q_OBJECT
122122
123+ Q_PROPERTY (QString setupName READ setupName NOTIFY setupNameChanged REVISION 2 )
123124 // ! The display name of the device
124125 Q_PROPERTY (QString deviceName READ deviceName WRITE setDeviceName RESET resetDeviceName NOTIFY deviceNameChanged)
125126 // ! The fingerprint of the devices cryptographic keys
@@ -161,6 +162,7 @@ class Q_DATASYNC_EXPORT AccountManager : public QObject
161162 // ! @copydoc importAccountTrusted(const QJsonObject &, const QString &, const std::function<void(bool,QString)> &, bool)
162163 void importAccountTrusted (const QByteArray &importData, const QString &password, const std::function<void (bool ,QString)> &completedFn, bool keepData = false);
163164
165+ QString setupName () const ;
164166 // ! @readAcFn{AccountManager::deviceName}
165167 QString deviceName () const ;
166168 // ! @readAcFn{AccountManager::deviceFingerprint}
@@ -200,6 +202,7 @@ public Q_SLOTS:
200202 // ! Is emitted when a device has been granted access to the current account
201203 void accountAccessGranted (const QUuid &deviceId, QPrivateSignal);
202204
205+ Q_REVISION (2 ) void setupNameChanged (const QString &setupName, QPrivateSignal);
203206 // ! @notifyAcFn{AccountManager::deviceName}
204207 void deviceNameChanged (const QString &deviceName, QPrivateSignal);
205208 // ! @notifyAcFn{AccountManager::deviceFingerprint}
0 commit comments