Files
fizzy/app/controllers/comments_controller.rb
T
2024-09-18 13:09:06 -04:00

14 lines
297 B
Ruby

class CommentsController < ApplicationController
include BubbleScoped, ProjectScoped
def create
@bubble.comments.create!(comment_params)
redirect_to project_bubble_url(@project, @bubble)
end
private
def comment_params
params.require(:comment).permit(:body)
end
end