crossey_app/app/controllers/public/comments_controller.rb
2013-09-30 17:42:55 +02:00

20 lines
314 B
Ruby

class Public::CommentsController < ApplicationController
def create
@comment = Comment.new(params[:comment])
@comment.enabled = true
if @comment.save
commentable = @comment.commentable
@comment_id = @comment.id
@comment = Comment.new
@comment.commentable = commentable
end
end
end