Files
fizzy/app/controllers/comments_controller.rb
T
2024-10-19 19:00:04 -07:00

9 lines
218 B
Ruby

class CommentsController < ApplicationController
include BubbleScoped, BucketScoped
def create
@bubble.comment! params.expect(comment: [ :body ])
redirect_to bucket_bubble_path(@bucket, @bubble)
end
end