Created
February 20, 2014 07:07
-
-
Save axilaris/9108404 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CommentsController < ApplicationController | |
before_action :set_comment, only: [:show, :edit, :update, :destroy] | |
# GET /comments | |
# GET /comments.json | |
def index | |
@comments = Comment.all | |
end | |
# GET /comments/1 | |
# GET /comments/1.json | |
def show | |
end | |
# GET /comments/new | |
def new | |
@comment = Comment.new | |
end | |
# GET /comments/1/edit | |
def edit | |
end | |
# POST /comments | |
# POST /comments.json | |
def create | |
@comment = Comment.new(comment_params) | |
respond_to do |format| | |
if @comment.save | |
format.html { redirect_to @comment, notice: 'Comment was successfully created.' } | |
format.json { render action: 'show', status: :created, location: @comment } | |
else | |
format.html { render action: 'new' } | |
format.json { render json: @comment.errors, status: :unprocessable_entity } | |
end | |
end | |
end | |
# PATCH/PUT /comments/1 | |
# PATCH/PUT /comments/1.json | |
def update | |
respond_to do |format| | |
if @comment.update(comment_params) | |
format.html { redirect_to @comment, notice: 'Comment was successfully updated.' } | |
format.json { head :no_content } | |
else | |
format.html { render action: 'edit' } | |
format.json { render json: @comment.errors, status: :unprocessable_entity } | |
end | |
end | |
end | |
# DELETE /comments/1 | |
# DELETE /comments/1.json | |
def destroy | |
@comment.destroy | |
respond_to do |format| | |
format.html { redirect_to comments_url } | |
format.json { head :no_content } | |
end | |
end | |
private | |
# Use callbacks to share common setup or constraints between actions. | |
def set_comment | |
@comment = Comment.find(params[:id]) | |
end | |
# Never trust parameters from the scary internet, only allow the white list through. | |
def comment_params | |
params.require(:comment).permit(:comments_text) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment