wedding-planner/app/controllers/users/registrations_controller.rb
Manuel Bustillo 5f01741943
Some checks failed
Check usage of free licenses / check-licenses (pull_request) Failing after 51s
Add copyright notice / copyright_notice (pull_request) Successful in 1m0s
Run unit tests / unit_tests (pull_request) Successful in 1m40s
Validate the Captcha challenge for account signup
2024-12-01 19:57:01 +01:00

28 lines
638 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class Users::RegistrationsController < Devise::RegistrationsController
clear_respond_to
respond_to :json
before_action :validate_captcha!, only: :create
def create
wedding = Wedding.create(wedding_params)
unless wedding.persisted?
render json: { errors: wedding.errors.full_messages }, status: :unprocessable_entity
return
end
ActsAsTenant.with_tenant(wedding) do
super do |user|
wedding.destroy unless user.persisted?
end
end
end
private
def wedding_params
{ slug: params[:slug], **params.expect(wedding: :date) }
end
end