mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-04 10:53:00 +08:00
25 lines
588 B
Elixir
25 lines
588 B
Elixir
defmodule LiveBookWeb.Router do
|
|
use LiveBookWeb, :router
|
|
|
|
pipeline :browser do
|
|
plug :accepts, ["html"]
|
|
plug :fetch_session
|
|
plug :fetch_live_flash
|
|
plug :put_root_layout, {LiveBookWeb.LayoutView, :root}
|
|
plug :protect_from_forgery
|
|
plug :put_secure_browser_headers
|
|
end
|
|
|
|
pipeline :api do
|
|
plug :accepts, ["json"]
|
|
end
|
|
|
|
scope "/", LiveBookWeb do
|
|
pipe_through :browser
|
|
|
|
live "/", HomeLive, :page
|
|
live "/sessions", SessionsLive, :page
|
|
live "/sessions/:id", SessionLive, :page
|
|
live "/sessions/:id/runtime", SessionLive, :runtime
|
|
end
|
|
end
|