Merge remote-tracking branch 'origin/develop' into develop-bloc-holidays

This commit is contained in:
2024-06-22 16:47:15 +02:00
33 changed files with 48 additions and 12 deletions

View File

@ -20,7 +20,7 @@ class NotifyRegister extends MhslApi<void> {
@override
Future<http.Response> request(Uri uri) {
var requestString = jsonEncode(params.toJson());
log(requestString);
log('register at push proxy with username ${params.username}');
return http.post(uri, body: requestString);
}
}

View File

@ -20,7 +20,7 @@ class UpdateUserIndex extends MhslApi<void> {
@override
Future<http.Response> request(Uri uri) {
var data = jsonEncode(params.toJson());
log('Updating userindex:\n $data');
log('Updating userindex: ${data.length}');
return http.post(uri, body: data);
}