mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 04:32:32 +00:00
14 lines
336 B
Dart
14 lines
336 B
Dart
part of sonarr_commands;
|
|
|
|
Future<void> _commandDeleteQueue(
|
|
Dio client, {
|
|
required int id,
|
|
bool? removeFromClient,
|
|
bool? blocklist,
|
|
}) async {
|
|
await client.delete('queue/$id', queryParameters: {
|
|
if (removeFromClient != null) 'removeFromClient': removeFromClient,
|
|
if (blocklist != null) 'blocklist': blocklist,
|
|
});
|
|
}
|