Method: Note#user_mentions
- Defined in:
- app/models/note.rb
#user_mentions ⇒ Object
620 621 622 623 624 |
# File 'app/models/note.rb', line 620 def user_mentions return Note.none unless noteable.present? noteable.user_mentions.where(note: self) end |