Finish implementing send page

This commit is contained in:
2025-04-13 01:51:52 +02:00
parent 95353735b0
commit e96be86314
7 changed files with 300 additions and 85 deletions

View File

@@ -34,7 +34,7 @@ class AppAuth extends ChangeNotifier implements TokenSource {
}
bool isAuth() {
return _userID != null && _tokenAdmin != null;
return _userID != null && _tokenAdmin != null && _tokenSend != null;
}
void set(User user, Client client, String tokenAdmin, String tokenSend) {