tracks/app/models/note.rb
2019-12-18 09:49:57 -06:00

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