27
lib/anonbb_web/router.ex
Normal file
27
lib/anonbb_web/router.ex
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
Reference in New Issue
Block a user