2019-08-15 02:32:32 +02:00
|
|
|
defmodule PhilomenaWeb.Router do
|
|
|
|
use PhilomenaWeb, :router
|
2019-08-17 20:58:36 +02:00
|
|
|
use Pow.Phoenix.Router
|
2019-08-15 02:32:32 +02:00
|
|
|
|
|
|
|
pipeline :browser do
|
|
|
|
plug :accepts, ["html"]
|
|
|
|
plug :fetch_session
|
|
|
|
plug :fetch_flash
|
|
|
|
plug :protect_from_forgery
|
|
|
|
plug :put_secure_browser_headers
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :api do
|
|
|
|
plug :accepts, ["json"]
|
|
|
|
end
|
|
|
|
|
2019-08-17 20:58:36 +02:00
|
|
|
scope "/" do
|
|
|
|
pipe_through :browser
|
|
|
|
|
|
|
|
pow_routes()
|
|
|
|
end
|
|
|
|
|
2019-08-15 02:32:32 +02:00
|
|
|
scope "/", PhilomenaWeb do
|
|
|
|
pipe_through :browser
|
|
|
|
|
|
|
|
get "/", PageController, :index
|
2019-08-18 18:17:05 +02:00
|
|
|
|
|
|
|
resources "/images", ImageController, only: [:index, :show]
|
2019-08-15 02:32:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Other scopes may use custom stacks.
|
|
|
|
# scope "/api", PhilomenaWeb do
|
|
|
|
# pipe_through :api
|
|
|
|
# end
|
|
|
|
end
|