mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
9 lines
138 B
Ruby
9 lines
138 B
Ruby
module Notes
|
|
class DeleteService < BaseService
|
|
def execute(note)
|
|
note.destroy
|
|
note.reset_events_cache
|
|
end
|
|
end
|
|
end
|