Fix up celery downloads a bit

This commit is contained in:
Duncan Sommerville 2015-09-15 14:21:19 -04:00
parent c8baa6e4b3
commit ff24976bed
2 changed files with 16 additions and 7 deletions

View file

@ -66,6 +66,18 @@ class SoundcloudService extends ThirdPartyCeleryService implements OAuth2 {
}
}
/**
* Given a SoundCloud track identifier, download a track from SoundCloud.
*
* If no track identifier is given, download all tracks for the currently
* authenticated SoundCloud user.
*
* @param int|null $trackId a SoundCloud track identifier
*/
public function download($trackId = null) {
parent::download($trackId);
}
/**
* Build a parameter array for the track being uploaded to SoundCloud
*