crowdAI/crowdai

View on GitHub
app/models/null_participant.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NullParticipant

  def method_missing(*args, &block)
    self
  end

  def name
    '<< redacted >>'
  end

  def admin?
    false
  end

  def image_file
    nil
  end

end