feat: add ability to add podcast channels

This commit is contained in:
antonio 2023-06-04 20:44:19 +02:00
parent 11f013934b
commit 7c136413e9

View file

@ -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);