When receiving online user credentials insert them into the model.
This commit is contained in:
@ -50,8 +50,9 @@ class GenericCore : public QObject {
|
||||
void onBiddingsChanged(int round, QList<bidding> biddings);
|
||||
|
||||
void onCreateOnlineAccountTriggered(const QString& mailAddress);
|
||||
// void onOnlineUserCreatedReceived(const QJsonDocument& jsonDoc);
|
||||
// void onOnlineUserExistedReceived(const QJsonDocument jsonDoc);
|
||||
void onOnlineUserAccountReceived(const QString mailAddress,
|
||||
const QString uuid,
|
||||
const QString accessToken);
|
||||
|
||||
signals:
|
||||
void displayStatusMessage(QString message);
|
||||
@ -59,7 +60,7 @@ class GenericCore : public QObject {
|
||||
/// *** server communication ***
|
||||
/// request signals
|
||||
void sendGetRequest(GetRequestTypes type, QVariant data = QVariant());
|
||||
void sendPostRequest(PostRequestTypes type, QVariant data = QVariant());
|
||||
void sendPostRequest(PostRequestTypes type, QByteArray data);
|
||||
/// response signals
|
||||
void currentBiddingRoundChanged(int round, bool isRunning);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user