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