Better client/login/authState handling
All checks were successful
Build Docker and Deploy / Build Docker Container (push) Successful in 2m58s
Build Docker and Deploy / Deploy to Server (push) Successful in 32s

This commit is contained in:
2024-06-02 17:09:57 +02:00
parent ec506a7f9e
commit ac299ec7ba
17 changed files with 496 additions and 401 deletions

View File

@@ -1,11 +0,0 @@
class KeyTokenAuth {
final String userId;
final String tokenAdmin;
final String tokenSend;
KeyTokenAuth({
required this.userId,
required this.tokenAdmin,
required this.tokenSend,
});
}