sloanelybutsurely.com/lib/web/router.ex

12 lines
278 B
Elixir

defmodule Web.Router do
use Web, :router
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug :fetch_live_flash
plug :put_root_layout, html: {Web.Layouts, :root}
plug :protect_from_forgery
plug :put_secure_browser_headers
end
end