chore: removed useless routes

This commit is contained in:
danilo silva 2020-05-25 09:06:13 +00:00
parent 3bea1c2d26
commit d6b3160a5b
2 changed files with 0 additions and 13 deletions

View file

@ -1,13 +1,6 @@
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
def by_identifier(conn, %{"identifier" => identifier}) do
%{podcast: podcast, items: items} = PodcastFeed.archive(identifier)
conn

View file

@ -13,12 +13,6 @@ defmodule PodcastFeedWeb.Router do
plug :accepts, ["json"]
end
scope "/", PodcastFeedWeb do
pipe_through :browser
get "/ape-milano", FeedController, :apeMilano
end
scope "/podcast", PodcastFeedWeb do
pipe_through :browser