Class: Notes::DestroyService

Inherits:
BaseService show all
Defined in:
app/services/notes/destroy_service.rb

Instance Attribute Summary

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from BaseService

#clear_noteable_diffs_cache, #increment_usage_counter

Methods inherited from BaseService

#initialize

Methods included from BaseServiceUtility

#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level

Methods included from Gitlab::Allowable

#can?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#execute(note) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'app/services/notes/destroy_service.rb', line 5

def execute(note)
  TodoService.new.destroy_target(note) do |note|
    note.destroy
  end

  clear_noteable_diffs_cache(note)
  track_note_removal_usage_for_issues(note) if note.for_issue?
  track_note_removal_usage_for_merge_requests(note) if note.for_merge_request?
  track_note_removal_usage_for_design(note) if note.for_design?
end