diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb index dde8f90e4..301f7f498 100644 --- a/app/controllers/comments_controller.rb +++ b/app/controllers/comments_controller.rb @@ -2,7 +2,7 @@ class CommentsController < ApplicationController include BubbleScoped, BucketScoped def create - @bubble.comments.create! body: params.expect(comment: [ :body ]) + @bubble.comments.create! params.expect(comment: [ :body ]) redirect_to @bubble end end