1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-05 12:09:52 +00:00
app-mirror-github/lib/api/label_task_bulk.dart

21 lines
762 B
Dart
Raw Normal View History

2021-06-04 09:34:25 +00:00
import 'package:vikunja_app/api/client.dart';
import 'package:vikunja_app/api/service.dart';
import 'package:vikunja_app/models/label.dart';
import 'package:vikunja_app/models/labelTaskBulk.dart';
import 'package:vikunja_app/models/task.dart';
import 'package:vikunja_app/service/services.dart';
class LabelTaskBulkAPIService extends APIService
implements LabelTaskBulkService {
LabelTaskBulkAPIService(Client client) : super(client);
@override
Future<List<Label>> update(Task task, List<Label> labels) {
return client
.post('/tasks/${task.id}/labels/bulk',
body: LabelTaskBulk(labels: labels).toJSON())
.then((response) => convertList(
response.body['labels'], (result) => Label.fromJson(result)));
2021-06-04 09:34:25 +00:00
}
}