tusker_push/lib/tusker_push_web/router.ex

24 lines
448 B
Elixir

defmodule TuskerPushWeb.Router do
use TuskerPushWeb, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/app", TuskerPushWeb do
pipe_through :api
scope "/v1" do
resources "/registrations", AppRegistrationsController, only: [:create, :update, :delete]
end
end
scope "/mastodon", TuskerPushWeb do
pipe_through :api
scope "/v1" do
post "/push/:id", PushController, :push
end
end
end