mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-02 14:11:29 +03:00
Get downloads now supports filtering by uids
This commit is contained in:
@@ -413,8 +413,8 @@ export class PostsService implements CanActivate {
|
||||
return this.http.post(this.path + 'getSubscriptions', {}, this.httpOptions);
|
||||
}
|
||||
|
||||
getCurrentDownloads() {
|
||||
return this.http.get(this.path + 'downloads', this.httpOptions);
|
||||
getCurrentDownloads(uids = null) {
|
||||
return this.http.post(this.path + 'downloads', {uids: uids}, this.httpOptions);
|
||||
}
|
||||
|
||||
getCurrentDownload(download_uid) {
|
||||
|
||||
Reference in New Issue
Block a user