router.ex 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. end
  23. # Enables LiveDashboard only for development
  24. #
  25. # If you want to use the LiveDashboard in production, you should put
  26. # it behind authentication and allow only admins to access it.
  27. # If your application does not have an admins-only section yet,
  28. # you can use Plug.BasicAuth to set up some basic authentication
  29. # as long as you are also using SSL (which you should anyway).
  30. if Mix.env() in [:dev, :test] do
  31. import Phoenix.LiveDashboard.Router
  32. scope "/" do
  33. pipe_through :browser
  34. live_dashboard "/dashboard", metrics: FourlettersWeb.Telemetry
  35. end
  36. end
  37. end