d4rk5eed

Results 6 comments of d4rk5eed

@JorgeDDW try `bot.api.send_message(chat_id: message.from.id, text: "Cats", parse_mode: "HTML" )` , telegram client`d render image by itself

@smpallen99 I suppose `provides a hood` means `provides a hook` :)

The second case Maybe we can update `ExAdmin.AdminResourceContrller` with new hook this way ``` case ExAdmin.Repo.insert(changeset) do {:error, changeset} -> conn # new hook handle_after_error_filter, maybe pattern matched handle_after_filter be...

the same question

I\`d remark `ExAdminDemo.AdminView` must be view in your project, not `ExAdmin.AdminView` Something generic ``` defmodule YourPrjNamespace.AdminView do use YourPrjNamespace.Web, :view end ```

seems to be quick fixed in changeset with this code ``` def changeset(struct, params \\ %{}) do struct |> cast(params, [:title, :section, :array1, :array2, :order]) |> put_change(:array1, Map.get(params, "array1", []))...