Rasmus Ansin

Results 3 comments of Rasmus Ansin

I personally really like that caps2esc does one thing, and one thing only. Any other tools would be cool, of course, but caps2esc staying the same would be nice.

Thanks, that solved the issue. Is there any examples of how you would do a transient belonging_to? E.g. I have an ApiKey, I want all Rights belonging to the ApiKey....

> For `m:n` relations like this one I normally just use a join for the second relation, so something like `ApiKeyRight::belonging_to(&api_key).inner_join(rights::table)` Wouldn't you have to turn that into a `Vec`...