2021-12-05 00:36:13 +01:00
|
|
|
defmodule BumpWeb.Router do
|
|
|
|
use BumpWeb, :router
|
|
|
|
|
|
|
|
pipeline :api do
|
|
|
|
plug :accepts, ["json"]
|
|
|
|
end
|
|
|
|
|
2021-12-10 15:34:38 +01:00
|
|
|
scope "/api", BumpWeb do
|
|
|
|
pipe_through :api
|
|
|
|
post "/push", MessageController, :push
|
|
|
|
post "/peak", MessageController, :peak
|
|
|
|
post "/pop", MessageController, :pop
|
|
|
|
post "/list", MessageController, :list
|
|
|
|
post "/clear", MessageController, :clear
|
|
|
|
end
|
2021-12-05 00:36:13 +01:00
|
|
|
|
2021-12-10 15:34:38 +01:00
|
|
|
|
|
|
|
pipeline :browser do
|
|
|
|
plug :accepts, ["html"]
|
2021-12-05 00:36:13 +01:00
|
|
|
end
|
|
|
|
|
2021-12-10 15:34:38 +01:00
|
|
|
scope "/", BumpWeb do
|
|
|
|
pipe_through :browser
|
|
|
|
get "/", DefaultController, :index
|
|
|
|
end
|
2021-12-05 00:36:13 +01:00
|
|
|
# Other scopes may use custom stacks.
|
|
|
|
# scope "/api", BumpWeb do
|
|
|
|
# pipe_through :api
|
|
|
|
# end
|
|
|
|
|
|
|
|
# Enables LiveDashboard only for development
|
|
|
|
#
|
|
|
|
# If you want to use the LiveDashboard in production, you should put
|
|
|
|
# it behind authentication and allow only admins to access it.
|
|
|
|
# If your application does not have an admins-only section yet,
|
|
|
|
# you can use Plug.BasicAuth to set up some basic authentication
|
|
|
|
# as long as you are also using SSL (which you should anyway).
|
|
|
|
if Mix.env() in [:dev, :test] do
|
|
|
|
end
|
|
|
|
end
|