6b042f65ab
removed hardcoded from generic podcast medatadata
10 lines
316 B
Elixir
10 lines
316 B
Elixir
defmodule PodcastFeedWeb.FeedController do
|
|
use PodcastFeedWeb, :controller
|
|
|
|
def apeMilano(conn, _params) do
|
|
%{podcast: podcast, items: items} = PodcastFeed.archive("incontri-a-piano-terra")
|
|
conn
|
|
|> put_resp_content_type("text/xml")
|
|
|> render("feed.xml", podcast: podcast, items: items)
|
|
end
|
|
end
|