Files
fizzy/app/controllers/comments_controller.rb
T
2024-10-11 20:14:09 -05:00

9 lines
220 B
Ruby

class CommentsController < ApplicationController
include BubbleScoped, BucketScoped
def create
@bubble.comment! params.dig(:comment, :body).presence
redirect_to bucket_bubble_url(@bucket, @bubble)
end
end