summaryrefslogtreecommitdiff
path: root/lib/services/authentication_service.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/services/authentication_service.dart')
-rw-r--r--lib/services/authentication_service.dart4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/services/authentication_service.dart b/lib/services/authentication_service.dart
index a1fd370..ede8808 100644
--- a/lib/services/authentication_service.dart
+++ b/lib/services/authentication_service.dart
@@ -1,10 +1,14 @@
class AuthenticationService {
bool isAuthenticated = false;
String apiKey = '';
+ String storedPNumber = '';
+ String storedDaycode = '';
Future<bool> authenticate(String username, String password) async {
isAuthenticated = true;
apiKey = 'test';
+ storedPNumber = username;
+ storedDaycode = password;
return true;
}
}