Files
fizzy/app/models/card
Ítalo Matos 2e33262960 Refactor: Use Rails range syntax in ActivitySpike query (#2080)
Replace SQL string syntax with Rails range syntax for date filtering
in the ActivitySpike::Detector. This improves code readability and
follows Rails idioms.

Changed from:
  .where("created_at >= ?", recent_period.seconds.ago)

To:
  .where(created_at: recent_period.seconds.ago..)

This modernizes the codebase while maintaining the same functionality.
2025-12-11 20:40:31 -08:00
..
2025-11-27 11:08:45 -05:00
2025-10-15 16:15:56 -05:00
2025-11-14 11:24:55 +01:00
2025-11-26 10:07:41 +00:00
2025-12-01 17:19:59 +00:00
2025-11-17 09:12:41 -05:00
2025-07-02 16:14:25 -05:00
2025-12-03 23:39:37 +01:00