Files
fizzy/app/controllers/comments_controller.rb
T
2024-09-13 19:16:36 -04:00

14 lines
252 B
Ruby

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