Files
fizzy/app/controllers/comments_controller.rb
T
2024-09-24 15:32:44 -04:00

14 lines
294 B
Ruby

class CommentsController < ApplicationController
include BubbleScoped, BucketScoped
def create
@bubble.comments.create!(comment_params)
redirect_to bucket_bubble_url(@bucket, @bubble)
end
private
def comment_params
params.require(:comment).permit(:body)
end
end