mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
7 lines
160 B
Ruby
7 lines
160 B
Ruby
# typed: strict
|
|
class Note < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :project
|
|
|
|
scope :with_body, lambda { |terms| where("body LIKE ?", terms) }
|
|
end
|