Skip to content
Extraits de code Groupes Projets
comments_controller.rb 745 octets
Newer Older
  • Learn to ignore specific revisions
  • Raphael's avatar
    Raphael a validé
    #   Copyright (c) 2010, Diaspora Inc.  This file is
    
    Raphael's avatar
    Raphael a validé
    #   licensed under the Affero General Public License version 3 or later.  See
    
    Raphael's avatar
    Raphael a validé
    #   the COPYRIGHT file.
    
    class CommentsController < ApplicationController
      before_filter :authenticate_user!
    
      respond_to :html
      respond_to :json, :only => :show
    
    
        target = current_user.find_visible_post_by_id params[:comment][:post_id]
    
        text = params[:comment][:text]
    
    Raphael's avatar
    Raphael a validé
        @comment = current_user.comment(text, :on => target) if target
        if @comment
    
          Rails.logger.info("event=comment_create user=#{current_user.inspect} status=success comment=#{@comment.inspect}")
    
    Raphael's avatar
    Raphael a validé
          render :nothing => true, :status => 201
        else
          render :nothing => true, :status => 401
        end