[qmaxmessanger] Add authToken property into usersession

This commit is contained in:
Sergey Chupligin 2025-07-09 13:08:25 +03:00
parent 2c78a9284b
commit 36554f4ec0
2 changed files with 10 additions and 0 deletions

View file

@ -131,3 +131,9 @@ void UserSession::updateProfile(QJsonObject profile)
emit userIdChanged();
}
}
QString UserSession::authToken()
{
QString authToken = m_settings->value("authToken").toString();;
return authToken ;
}