Adam Lancaster
Adam Lancaster
Should we have an options to create a struct keeping virtual fields if they exist? The canonical example is password when you explicitly don't want to keep the virtual field....
...so that we can put a change on a deeply nested changeset. We can use the same zipping idea from the validate_nested_changeset. We need to seperate out the recursion though...
Would be cool if we could map between structs, specifying which key in the one struct maps to the key in the other struct. ```elixir EctoMorph.translate(%MyStruct{field: "yis"}, %YouKnow{}, [field: :other])...
V6 UUID
Thanks for the lib! Are there any plans to support a v6 UUID? http://gh.peabody.io/uuidv6/ https://tools.ietf.org/html/draft-peabody-dispatch-new-uuid-format-00 I know it's an RFC right now, but just thought I'd ask.
Is there any chance I could humbly request an example in the documentation for when you move a card between two columns. There are comments alluding to it in the...
Currently the library is focused around emitting a Struct from some arbitrary input data. This is fine and good but the way we do that is with a `reduce`, which...
would there be any benefit to having schema fields live in persistent term rather than in a hidden module? I'm thinking about what absinthe does for example: https://hexdocs.pm/absinthe/Absinthe.Schema.PersistentTerm.html We are...
We should investigate how best to do this or if this is desireable / possible. Seems like we would have to implement something that implements the `Phoenix.HTML.FormData` protocol perhaps. Effectively...