debian-mirror-gitlab/app/services/notes/destroy_service.rb

8 lines
109 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
module Notes
2017-08-17 22:00:37 +05:30
class DestroyService < BaseService
2016-06-02 11:05:42 +05:30
def execute(note)
note.destroy
end
end
end