13 lines
428 B
Ruby
13 lines
428 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SystemNotes
|
|
class ZoomService < ::SystemNotes::BaseService
|
|
def zoom_link_added
|
|
create_note(NoteSummary.new(noteable, project, author, _('added a Zoom call to this issue'), action: 'pinned_embed'))
|
|
end
|
|
|
|
def zoom_link_removed
|
|
create_note(NoteSummary.new(noteable, project, author, _('removed a Zoom call from this issue'), action: 'pinned_embed'))
|
|
end
|
|
end
|
|
end
|