Any idea how you could sort based on an attribute in an associated model?
This won't work because it's sorted it by "group" and not "group name". I tried
@set "users", App.User.get("all.sortedBy.group[name]")
@set "users", App.User.get("all.sortedBy[group].name")
@set "users", App.User.get("all.sortedBy[
group.name]")
I'm not sure whether you can accomplish this in using just key paths since it seems to only take the first key (group) as an argument and the 2nd (name) is ignored.
Any ideas?
Thanks!