class CommentsController

Public Instance Methods

archive() click to toggle source

ARCHIVE /comments/1 ARCHIVE /comments/1.json

# File app/controllers/comments_controller.rb, line 73
def archive
  @comment = Comment.find(params[:comment][:id])
  @comment.archived = true
  @comment.archived_by = params[:comment][:archived_by]
  
  @plan = Plan.find(@comment.plan_id)
  @project = Project.find(@plan.project_id)

  respond_to do |format|
    if @comment.update_attributes(params[:comment])
      session[:question_id_comments] = @comment.question_id
      format.html { redirect_to edit_project_plan_path(@project, @plan), status: :found, notice: 'Comment has been removed.' }     
    end   
  end
end
create() click to toggle source

POST /comments POST /comments.json

# File app/controllers/comments_controller.rb, line 32
def create
 if user_signed_in? then
      @comment = Comment.new(params[:new_comment])
      @comment.text = params["#{params[:new_comment][:question_id]}new_comment_text"]
      @comment.question_id = params[:new_comment][:question_id]
      @comment.user_id = params[:new_comment][:user_id]
      @comment.plan_id = params[:new_comment][:plan_id]
      
      @plan = Plan.find(@comment.plan_id)
      @project = Project.find(@plan.project_id)
      
      respond_to do |format|
        if @comment.save
          session[:question_id_comments] = @comment.question_id
          format.html { redirect_to edit_project_plan_path(@project, @plan), status: :found, notice: 'Comment was successfully created.' }
          format.json { head :no_content  }
        end
      end
  end    
end
edit() click to toggle source

GET /comments/1/edit

# File app/controllers/comments_controller.rb, line 26
def edit
  @comment = Comment.find(params[:id])
end
index() click to toggle source

GET /comments GET /comments.json

# File app/controllers/comments_controller.rb, line 4
def index
  @comments = Comment.all

  respond_to do |format|
    format.html # index.html.erb

    format.json { render json: @comments }
  end
end
show() click to toggle source

GET /comments/1 GET /comments/1.json

# File app/controllers/comments_controller.rb, line 15
def show
  @comment = Comment.find(params[:id])

  respond_to do |format|
    format.html # show.html.erb

    format.json { render json: @comment }
  end
end
update() click to toggle source

PUT /comments/1 PUT /comments/1.json

# File app/controllers/comments_controller.rb, line 55
def update
  @comment = Comment.find(params[:comment][:id])
  @comment.text = params["#{params[:comment][:id]}_comment_text"]
  
  @plan = Plan.find(@comment.plan_id)
  @project = Project.find(@plan.project_id)
  
  respond_to do |format|
    if @comment.update_attributes(params[:comment])
      session[:question_id_comments] = @comment.question_id
      format.html { redirect_to edit_project_plan_path(@project, @plan), status: :found, notice: 'Comment was successfully updated.' }
      format.json { head :no_content }
    end
  end
end