mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +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
|