Skip to content

Instantly share code, notes, and snippets.

@paveltyk
Last active September 11, 2019 21:09
Show Gist options
  • Save paveltyk/a1f6a4497e167170746b02a0a023f58e to your computer and use it in GitHub Desktop.
Save paveltyk/a1f6a4497e167170746b02a0a023f58e to your computer and use it in GitHub Desktop.
defmodule HealthyskinWeb.Router do
use HealthyskinWeb, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/api", HealthyskinWeb do
pipe_through :api
post "/subscriptions", SubscriptionController, :create
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment