Files
anonbb/lib/anonbb_web/router.ex
Alek Ratzloff fe85447557 Initial commit
Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2019-10-09 08:59:53 -04:00

28 lines
549 B
Elixir

defmodule AnonbbWeb.Router do
use AnonbbWeb, :router
pipeline :browser do
plug :accepts, ["html", "text/javascript"]
plug :fetch_session
plug :fetch_flash
plug :protect_from_forgery
plug :put_secure_browser_headers
end
pipeline :api do
plug :accepts, ["json"]
end
scope "/", AnonbbWeb do
pipe_through :browser
get "/", PageController, :index
get "/room/:name", RoomController, :show
end
# Other scopes may use custom stacks.
# scope "/api", AnonbbWeb do
# pipe_through :api
# end
end