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-02-11 23:35:32 +08:00
|
|
|
live "/", HomeLive, :page
|
|
|
|
live "/sessions", SessionsLive, :page
|
|
|
|
live "/sessions/:id", SessionLive, :page
|
2021-02-11 19:42:17 +08:00
|
|
|
live "/sessions/:id/runtime", SessionLive, :runtime
|
2021-02-18 20:14:09 +08:00
|
|
|
live "/sessions/:id/shortcuts", SessionLive, :shortcuts
|
2021-01-08 03:55:45 +08:00
|
|
|
end
|
|
|
|
end
|