Welcome to mirror list, hosted at ThFree Co, Russian Federation.

destroy_service.rb « notes « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b819bd1703946e8df00fc48389f6757ccdcc6d97 (plain)
1
2
3
4
5
6
7
module Notes
  class DestroyService < BaseService
    def execute(note)
      note.destroy
    end
  end
end