Files
fizzy/app/controllers/comments_controller.rb
T
David Heinemeier Hansson c00dcd8c66 Already comes as a hash
2024-10-19 19:55:14 -07: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