def create
    @sample.comments.create(description: params[:comment], user_id: current_user.id)
    @comments = @sample.comments
    render partial: 'list', locals: { commentable: @sample, visible: true }
  end