28 lines
549 B
Elixir
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
|