Files
fizzy/app/controllers/comments_controller.rb
T
2024-10-27 17:39:30 -06:00

14 lines
257 B
Ruby

class CommentsController < ApplicationController
include BubbleScoped, BucketScoped
def create
@bubble.capture new_comment
redirect_to @bubble
end
private
def new_comment
Comment.new params.expect(comment: [ :body ])
end
end