Sébastien Nadon

Results 5 issues of Sébastien Nadon

```crystal # works UserQuery.new .preload_role .where_groups(GroupQuery.new.id.in(groups.map &.id)) .email .upper .asc_order # works UserQuery.new .preload_role .where_groups(GroupQuery.new.id.in(groups.map &.id)) .email .asc_order .distinct # doesn't work (for SELECT DISTINCT, ORDER BY expressions must appear...

In this use case, `tracks` ordering does not work: ``` playlists = PlaylistQuery.new .preload_cover( StashQuery.new.preload_icon.preload_cover.preload_archive) .preload_tracks( StashQuery.new.preload_icon.preload_cover.preload_archive.ordering.asc_order) .preload_interviews( StashQuery.new.preload_icon.preload_cover.preload_archive.ordering.asc_order) .published(true) .ordering .asc_order ``` ``` class Playlist < BaseModel table do...

bug

We should add how to make ajax calls with the csrf token in the documentation. Something along the line of https://gist.github.com/benschwarz/5333009

**Describe the bug** When you recompile the compile time message shows the time spent since the first compilation. **To Reproduce** Steps to reproduce the behavior: > 1. Start `lucky dev`...

bug

I created a Hello World job. It's working well locally. However, once deployed on Heroku, the worker is giving errors. The job: ```crystal class HelloWorldJob < Mosquito::PeriodicJob run_every 1.minute def...