router.ex 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. defmodule FourlettersWeb.Router do
  2. use FourlettersWeb, :router
  3. pipeline :browser do
  4. plug :accepts, ["html"]
  5. plug :fetch_session
  6. plug :fetch_flash
  7. plug :protect_from_forgery
  8. plug :put_secure_browser_headers
  9. end
  10. pipeline :api do
  11. plug :accepts, ["json"]
  12. end
  13. scope "/", FourlettersWeb do
  14. pipe_through :browser
  15. get "/", FourlettersController, :nothing
  16. get "/:fourletters", FourlettersController, :fourletters
  17. end
  18. # Other scopes may use custom stacks.
  19. scope "/", FourlettersWeb do
  20. pipe_through :api
  21. post "/:fourletters", FourlettersController, :addletters
  22. post "/api/:fourletters", FourlettersController, :apiaddletters
  23. delete "/api/:fourletters", FourlettersController, :apiclearletters
  24. # for stupid html forms that dont do DELETE
  25. post "/api/clear/:fourletters", FourlettersController, :clearletters
  26. end
  27. # Enables LiveDashboard only for development
  28. #
  29. # If you want to use the LiveDashboard in production, you should put
  30. # it behind authentication and allow only admins to access it.
  31. # If your application does not have an admins-only section yet,
  32. # you can use Plug.BasicAuth to set up some basic authentication
  33. # as long as you are also using SSL (which you should anyway).
  34. if Mix.env() in [:dev, :test] do
  35. import Phoenix.LiveDashboard.Router
  36. scope "/" do
  37. pipe_through :browser
  38. live_dashboard "/dashboard", metrics: FourlettersWeb.Telemetry
  39. end
  40. end
  41. end