5efbfa14d4
This is moved to a model method rather than an helper method because the API will need it too.
15 lines
483 B
Text
15 lines
483 B
Text
- if @discussions.present?
|
|
- @discussions.each do |discussion_notes|
|
|
- note = discussion_notes.first
|
|
- if note_for_main_target?(note)
|
|
- next if note.cross_reference_not_visible_for?(current_user)
|
|
|
|
= render discussion_notes
|
|
- else
|
|
= render 'projects/notes/discussion', discussion_notes: discussion_notes
|
|
- else
|
|
- @notes.each do |note|
|
|
- next unless note.author
|
|
- next if note.cross_reference_not_visible_for?(current_user)
|
|
|
|
= render note
|