Class: SystemNotes::ZoomService

Inherits:
BaseService show all
Defined in:
app/services/system_notes/zoom_service.rb

Instance Attribute Summary

Attributes inherited from BaseService

#author, #noteable, #project

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Constructor Details

This class inherits a constructor from SystemNotes::BaseService

Instance Method Details



5
6
7
# File 'app/services/system_notes/zoom_service.rb', line 5

def zoom_link_added
  create_note(NoteSummary.new(noteable, project, author, _('added a Zoom call to this issue'), action: 'pinned_embed'))
end


9
10
11
# File 'app/services/system_notes/zoom_service.rb', line 9

def zoom_link_removed
  create_note(NoteSummary.new(noteable, project, author, _('removed a Zoom call from this issue'), action: 'pinned_embed'))
end