0dacf3c169
* Changed name of delete_user_service and worker to destroy * Move and change delete_group_service to Groups::DestroyService * Rename Notes::DeleteService to Notes::DestroyService
7 lines
109 B
Ruby
7 lines
109 B
Ruby
module Notes
|
|
class DestroyService < BaseService
|
|
def execute(note)
|
|
note.destroy
|
|
end
|
|
end
|
|
end
|