We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf4274 commit ca99019Copy full SHA for ca99019
lib/repositories/data_repository.dart
@@ -309,17 +309,6 @@ class DataRepository {
309
return result;
310
}
311
312
- Future<Map<String, dynamic>> getEmployeePresence(DateTime date) async {
313
- Map<String, dynamic> data;
314
- try {
315
- data =
316
- await apiService.getEndpointData(endpoint: Endpoint.presence, query: {
317
- 'date': date.toString(),
318
- });
319
- } catch (e) {}
320
- return data;
321
- }
322
-
323
Future<Response> cancelAttendance(Map<String, dynamic> data) async {
324
Response response;
325
try {
0 commit comments