Skip to content

Instantly share code, notes, and snippets.

@svarks
Created September 4, 2013 19:45
Show Gist options
  • Save svarks/6441894 to your computer and use it in GitHub Desktop.
Save svarks/6441894 to your computer and use it in GitHub Desktop.
def destroy(async = true)
if async
AsyncMethod.perform_async(self.class.name, id, :destroy, false)
else
super
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment