Kenneth Kostrešević
Kenneth Kostrešević
In router ``` get "/topic/:slug/feed", FeedController, :topic_show get "/topic/:slug/news/feed", FeedController, :topic_news get "/topic/:slug/podcasts/feed", FeedController, :topic_podcasts ``` First one should be `get "/topic/:slug/feed", FeedController, :topic`
I can't seem to access the slack workspace. 🙏 I would like to be informed on the progress of this. Maybe I could help if I find some time.
@zachdaniel I'd like to tackle this one, just need a few pointers: I reckon it should be similar to `phx.routes` task but it gets all domains (which function should I...
@frankdugan3 If you do `Ash.Query.for_read(Hsm.FFL.ADRecord, :bound_book_report, %{}, actor: nil)` should be fine. I think the problem here is the last two args that have default, map and list. In your...
> > [@frankdugan3](https://github.com/frankdugan3) If you do `Ash.Query.for_read(Hsm.FFL.ADRecord, :bound_book_report, %{}, actor: nil)` should be fine. > > To clarify, I understand how to work around this, the issue is about the...
> But it would be nice if there were a config option to change the default globally. I had the same idea. I imagine `Ash.DefaultsConfig` or something like. It could...
I also would like to add to ash config idea that such config option would enable to make your ash application maximum explicit or maximum implicit - depending what you...
@zachdaniel Is this fixed? Seems like it is. When I try this out compile doesn't pass: ``` error: undefined variable "not_existing_resource_or_relationship" │ 29 │ Ash.Sort.expr_sort(not_existing_resource_or_relationship.attribute, :string) │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ │ ==...
I didn't reproduce the same error but something similar: ``` Unknown Error * ** (MatchError) no match of right hand side value: {:error, "Invalid reference not_existing_resource_or_relationship.attribute"} (ash 3.4.64) lib/ash/actions/read/read.ex:1833: anonymous...
Okay cool. One more technical question: What's in expression is: `type(not_existing_resource_or_relationship.attribute, Ash.Type.String, [])` And I'm not sure how to break that down. 🤔 I was thinking of using `Info` module...