Skip to content

Instantly share code, notes, and snippets.

View gamache's full-sized avatar
🤙

pete gamache gamache

🤙
View GitHub Profile
@gamache
gamache / conntest_example.ex
Last active April 10, 2023 08:15
Phoenix.ConnTest appears not to pass request body to controller
# router.ex
defmodule Myapp.Router do
use Myapp.Web, :router
pipeline :api do
plug :accepts, ["json"]
end
scope "/", Myapp do
pipe_through :api