Bogdan

Results 7 comments of Bogdan

> You can force override ecto/ecto_sql via `override: true` in it's dependency, and arc_ecto will 'mostly' work, however there is a bug that still prevents it from working, attempting to...

Here is the error `(FunctionClauseError) no function clause matching in anonymous fn/2 in Assets.Asset.changeset/2 (assets) lib/asset.ex:51: anonymous fn({"url", %{binary: , filename: "image.jpeg"}}, []) in Assets.Asset.changeset/2 (stdlib) maps.erl:257: :maps.fold_1/3 (assets) lib/asset.ex:51:...

line 51 ` |> cast_attachments(attrs, [:url])` assets.ex ``` defmodule Assets.Asset do use Ecto.Schema import Ecto.Changeset use Arc.Ecto.Schema @primary_key {:id, :binary_id, autogenerate: true} # @derive {Phoenix.Param, key: :id} @derive {Jason.Encoder, only:...

Thank you folks for your help! I will be following the discussion on arc_ecto thread, maybe they merge the PR :).Seems that there is a [workaround proposed ](https://github.com/stavro/arc_ecto/issues/54#issuecomment-424254243) until better...

I had the same issue and it seems that you can run the task with a second param "mix arc.g ". Ex: mix arc.g avatar lib/uploaders.

Not so much to my knowledge, here is a similar [issue opened #54](https://github.com/stavro/arc_ecto/issues/54) and there is an [outstanding PR #87](https://github.com/stavro/arc_ecto/pull/87). It works with Plug.Upload%{} though so you can convert it...

I just want to second this request, some sister library or extension to define sum types and support for (de)serialization would be great. Not 100% sure on the dependency on...