blob: 4df4273ce4003e7cc5e707f29c99d41fa2548145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
from PyQt5.QtWidgets import QMessageBox
def core_logout(mainWindow: object) -> None:
""""""
if mainWindow.userConnected == True:
mainWindow.userConnected = False
mainWindow.userId = ""
mainWindow.userEmail = ""
mainWindow.userInscrDate = ""
mainWindow.userStatus = ""
QMessageBox.information(
mainWindow,
"Déconnection",
"Vous êtes déconnecté."
)
|