Bingo ![]()
# Router
scope "/private", MarkoWeb, as: :private do
pipe_through :internal_api
get "/items/:id", ItemController, :show, as: :show_item
end
# Tests
Routes.private_show_item_path(conn, :show, id)
Thank you ![]()
Bingo ![]()
# Router
scope "/private", MarkoWeb, as: :private do
pipe_through :internal_api
get "/items/:id", ItemController, :show, as: :show_item
end
# Tests
Routes.private_show_item_path(conn, :show, id)
Thank you ![]()