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

9 lines
203 B
Ruby

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