Skip to content
Extraits de code Groupes Projets
comments_controller.rb 431 octets
Newer Older
  • Learn to ignore specific revisions
  • class CommentsController < ApplicationController
      before_filter :authenticate_user!
      
    
      respond_to :html
      respond_to :json, :only => :show
    
    
        target = Post.find_by_id params[:comment][:post_id]
    
        text = params[:comment][:text]
    
    
        @comment = current_user.comment text, :on => target
        respond_with @comment
      end
    
      def show
        @comment = Comment.find_by_id params[:id]
        respond_with @comment