crowdAI/crowdai

View on GitHub
app/concepts/discussion/cell.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Discussion::Cell < Template::Cell

  def show
    render
  end

  def topic
    model
  end

  def comments
    @comments ||= topic.comments
  end

  def author
    topic.participant || NullParticipant.new
  end

end