class CommentsController < ApplicationController
	
  def new
  	  @comment = Comment.new
  end

  def display_all
  	  comment = Comment.new(params[:comment])
  	  comment.save
  	  @all_comments = Comment.all
  end

end