comment_paragraph_plugin_public_controller.rb 275 Bytes
class CommentParagraphPluginPublicController < PublicController
  append_view_path File.join(File.dirname(__FILE__) + '/../views')

  def comment_paragraph
    @comment = Comment.find(params[:id])
    render :json => { :paragraph_uuid => @comment.paragraph_uuid }
  end

end