Vanja Radovanović
Vanja Radovanović
Hmmm, good point! I assumed that relationship name determines type in a way. Mostly because if felt odd to have to search for included `article` even though relation was `pinned-article`....
P.S. If it helps, I also have a workaround. In controller, I apply this transformation to the sparse fields params: ```elixir defp underscore(nil), do: nil defp underscore(string) when is_binary(string), do:...
Hi! Sure, no problemo, it is not an emergency 😄 And yes, the non-custom properties also break, on main record or on relations.
If it helps anyone, I used this idea to test various paths. It is not generally applicable to every situation, but it is easily adaptable (pun intended 😄): ```elixir #...
For a use case when refresh interval is long-ish (e.g. couple of days or so), one might want to refresh the entire cache explicitly, via manual execution. E.g. we have...
> Maybe just a Cachex.warm/1 which will notify all warmers attached to a cache That should work, yes. I guess the point is to just to be able to somehow...
Have similar situation: - main_app - with `MainApp.Repo` - admin web - with `Admin.Endpoint` and router - user web - with `User.Endpoint` and router I tried doing it like this...
Update: the `:user_web` app indeed has option to choose e.g. the repo for Ecto dashboard, but again no data. Other Ecto dashboards totally empty, filters included.
Hi Nick, In given order :-) 1. I remember that you wanted to have users saved with songs as well. I could not find a nicer solution to "add user...
OK, a short plan: I'll drop "user per song" feature and try to make it all work through form directly. I'll ping you when (not if) I get stuck :-)...