router.ex 1.3 KB

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