livebook/lib/live_book_web/router.ex

28 lines
552 B
Elixir
Raw Normal View History

2021-01-08 03:55:45 +08:00
defmodule LiveBookWeb.Router do
use LiveBookWeb, :router
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
2021-01-08 04:16:54 +08:00
plug :fetch_live_flash
plug :put_root_layout, {LiveBookWeb.LayoutView, :root}
2021-01-08 03:55:45 +08:00
plug :protect_from_forgery
plug :put_secure_browser_headers
end
pipeline :api do
plug :accepts, ["json"]
end
scope "/", LiveBookWeb do
pipe_through :browser
2021-01-08 04:16:54 +08:00
live "/", PageLive, :index
2021-01-08 03:55:45 +08:00
end
# Other scopes may use custom stacks.
# scope "/api", LiveBookWeb do
# pipe_through :api
# end
end