8 lines
138 B
Ruby
8 lines
138 B
Ruby
module Notes
|
|
class DeleteService < BaseService
|
|
def execute(note)
|
|
note.destroy
|
|
note.reset_events_cache
|
|
end
|
|
end
|
|
end
|