Files
fizzy/app/controllers/comments_controller.rb
T
2024-10-24 10:38:59 -06:00

9 lines
197 B
Ruby

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