-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Add DSL feature for the deleting service.
Currently the deletions are described through the Dalek::Exterminate.deletion_tree method via data structure.
It will be nice to have DSL build over the deletion tree structure.
Example
class DeleteUser
include Dalek::Exterminate
delete User do
before { ... }
delete :posts do
delete :comments
after { ... }
end
delete :comments do
skip :images
delete :tags
end
handle(:avatars) { ... }
end
endReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request