crowdAI/crowdai

View on GitHub
app/concepts/discussion/cells/comment_form.rb

Summary

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

  def show
    render :comment_form
  end

  def topic
    model
  end

  def comment
    topic.comments.new(participant: current_participant)
  end

end