mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
feat: add ability to add podcast channels
This commit is contained in:
parent
11f013934b
commit
7c136413e9
1 changed files with 5 additions and 0 deletions
|
|
@ -44,6 +44,11 @@ public class PodcastClient {
|
|||
return podcastService.refreshPodcasts(subsonic.getParams());
|
||||
}
|
||||
|
||||
public Call<ApiResponse> createPodcastChannel(String url) {
|
||||
Log.d(TAG, "createPodcastChannel()");
|
||||
return podcastService.createPodcastChannel(subsonic.getParams(), url);
|
||||
}
|
||||
|
||||
public Call<ApiResponse> deletePodcastChannel(String channelId) {
|
||||
Log.d(TAG, "deletePodcastChannel()");
|
||||
return podcastService.deletePodcastChannel(subsonic.getParams(), channelId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue