assemblymade/coderwall

View on GitHub
app/services/user_comments_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
module UserCommentsService
  def self.deindex_all_for(user)
    user.comments.each do |comment|
      comment.mark_as_spam
    end
  end
end