Podcast scrobbling

This commit is contained in:
2023-12-02 13:55:22 +11:00
parent c0c50bc107
commit 731529ddb5
8 changed files with 203 additions and 118 deletions

View File

@@ -2,11 +2,15 @@ module Adamantium
module Views
module Podcasts
class Index < View
include Deps["repos.podcast_repo"]
include Deps["repos.podcast_repo", "repos.podcast_scrobble_repo"]
expose :podcasts do
podcast_repo.listing
end
expose :listens do
podcast_scrobble_repo.listing
end
end
end
end