mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-15 08:46:34 +01: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
|