legendary-doc-site/apps/app/lib/app_web/router.ex

38 lines
1,011 B
Elixir
Raw Normal View History

2020-07-30 16:05:09 +00:00
defmodule AppWeb.Router do
use AppWeb, :router
2020-07-29 17:07:36 +00:00
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug :fetch_flash
plug :protect_from_forgery
plug :put_secure_browser_headers
2020-07-30 16:05:09 +00:00
plug :put_layout, {CoreWeb.LayoutView, :app}
2020-07-29 17:07:36 +00:00
end
pipeline :api do
plug :accepts, ["json"]
end
# Other scopes may use custom stacks.
2020-07-30 16:05:09 +00:00
# scope "/api", AppWeb do
2020-07-29 17:07:36 +00:00
# pipe_through :api
# end
# Enables LiveDashboard only for development
#
# If you want to use the LiveDashboard in production, you should put
# it behind authentication and allow only admins to access it.
# If your application does not have an admins-only section yet,
# you can use Plug.BasicAuth to set up some basic authentication
# as long as you are also using SSL (which you should anyway).
if Mix.env() in [:dev, :test] do
import Phoenix.LiveDashboard.Router
scope "/" do
pipe_through :browser
2020-07-30 16:05:09 +00:00
live_dashboard "/dashboard", metrics: AppWeb.Telemetry
2020-07-29 17:07:36 +00:00
end
end
end