Skip to content

Instantly share code, notes, and snippets.

@sameera207
Last active March 23, 2016 06:34
Show Gist options
  • Save sameera207/187eb07cb7baffdb666b to your computer and use it in GitHub Desktop.
Save sameera207/187eb07cb7baffdb666b to your computer and use it in GitHub Desktop.
class FeaturedPhotosService
def self.clean_featured_photo_for(listing_photo)
updated_record_count = Listing.where(featured_photo_id: listing_photo.id).
update_all(featured_photo_id: nil)
listing_photo.destroy if updated_record_count > 0
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment