summaryrefslogtreecommitdiff
path: root/lib/services/authentication_service.dart
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-11-07 21:23:36 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-11-07 21:23:36 +0100
commiteed27fa5568e507c255a524185356786c877b2b8 (patch)
tree4e2748dfd42ec1d3c4584102e6780db09bd82f0a /lib/services/authentication_service.dart
parent94d5a9897bf536a359febab1b422a6aff1bfd080 (diff)
ready for irl test
Diffstat (limited to 'lib/services/authentication_service.dart')
-rw-r--r--lib/services/authentication_service.dart16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/services/authentication_service.dart b/lib/services/authentication_service.dart
deleted file mode 100644
index ef9113e..0000000
--- a/lib/services/authentication_service.dart
+++ /dev/null
@@ -1,16 +0,0 @@
-import 'package:training_planner/services/istoregear_api_service.dart';
-
-class AuthenticationService {
- bool isAuthenticated = false;
- String apiKey = '';
- String storedPNumber = '639174';
- String storedDaycode = '424';
-
- Future<bool> authenticate(String username, String password) async {
- isAuthenticated = true;
- apiKey = 'test';
- storedPNumber = username;
- storedDaycode = password;
- return true;
- }
-}