Sha256: a64e6f247e6d9c36aae4d09baf5f1e0d221b60cf0bce309697214171aa2077a1
Contents?: true
Size: 1.98 KB
Versions: 4
Compression:
Stored size: 1.98 KB
Contents
class CommentsController < ApplicationController # GET /comments # GET /comments.xml def index @comments = Comment.all respond_to do |format| format.html # index.html.erb format.xml { render :xml => @comments } end end # GET /comments/1 # GET /comments/1.xml def show @comment = Comment.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml => @comment } end end # GET /comments/new # GET /comments/new.xml def new @comment = Comment.new respond_to do |format| format.html # new.html.erb format.xml { render :xml => @comment } end end # GET /comments/1/edit def edit @comment = Comment.find(params[:id]) end # POST /comments # POST /comments.xml def create @comment = Comment.new(params[:comment]) respond_to do |format| if @comment.save flash[:notice] = 'Comment was successfully created.' format.html { redirect_to(@comment) } format.xml { render :xml => @comment, :status => :created, :location => @comment } else format.html { render :action => "new" } format.xml { render :xml => @comment.errors, :status => :unprocessable_entity } end end end # PUT /comments/1 # PUT /comments/1.xml def update @comment = Comment.find(params[:id]) respond_to do |format| if @comment.update_attributes(params[:comment]) flash[:notice] = 'Comment was successfully updated.' format.html { redirect_to(@comment) } format.xml { head :ok } else format.html { render :action => "edit" } format.xml { render :xml => @comment.errors, :status => :unprocessable_entity } end end end # DELETE /comments/1 # DELETE /comments/1.xml def destroy @comment = Comment.find(params[:id]) @comment.destroy respond_to do |format| format.html { redirect_to(comments_url) } format.xml { head :ok } end end end
Version data entries
4 entries across 4 versions & 1 rubygems