Initial commit

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2019-10-09 08:59:53 -04:00
commit fe85447557
62 changed files with 7907 additions and 0 deletions

27
lib/anonbb_web/router.ex Normal file
View 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