1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2025-06-19 16:45:17 +00:00

Add main application menu

This commit is contained in:
2020-01-10 16:06:45 +01:00
parent 81258de89d
commit d7c8ee85d8
3 changed files with 26 additions and 1 deletions

View File

@ -51,6 +51,13 @@ bool AccountHelper::signedIn()
return mToken1.length() > 0 && mToken2.length() > 0 && mUserID > 0;
}
void AccountHelper::SignOut()
{
mToken1 = "";
mToken2 = "";
mUserID = -1;
}
bool AccountHelper::refreshUserID()
{
// Get current user ID

View File

@ -26,6 +26,7 @@ public:
static bool signedIn();
static void SignOut();
static bool refreshUserID();
static int userID();