tusker_push/lib/tusker_push_web/router.ex

20 lines
387 B
Elixir
Raw Normal View History

2024-04-05 18:23:00 +00:00
defmodule TuskerPushWeb.Router do
use TuskerPushWeb, :router
pipeline :api do
plug :accepts, ["json"]
end
2024-04-05 19:04:38 +00:00
scope "/app", TuskerPushWeb do
2024-04-05 18:23:00 +00:00
pipe_through :api
2024-04-05 19:04:38 +00:00
2024-04-07 14:56:23 +00:00
resources "/registrations", RegistrationsController, only: [:create, :update, :delete]
2024-04-05 18:23:00 +00:00
end
2024-04-05 22:26:10 +00:00
scope "/mastodon", TuskerPushWeb do
pipe_through :api
post "/push/:id", PushController, :push
end
2024-04-05 18:23:00 +00:00
end