Files
fizzy/app/controllers/memberships/email_addresses_controller.rb
T
Mike Dalessio d41d50d52b Account.sole → Current.account
and some other de-tenant changes, including removing the controller
tenanting concerns
2025-11-17 09:11:40 -05:00

30 lines
754 B
Ruby

class Memberships::EmailAddressesController < ApplicationController
layout "public"
before_action :set_membership
rate_limit to: 5, within: 1.hour, only: :create
def new
end
def create
identity = Identity.find_by_email_address(new_email_address)
if identity&.memberships&.exists?(tenant: @membership.tenant)
flash[:alert] = "You already have a user in this account with that email address"
redirect_to new_email_address_path
else
@membership.send_email_address_change_confirmation(new_email_address)
end
end
private
def set_membership
@membership = Current.identity.memberships.find(params[:membership_id])
end
def new_email_address
params.expect :email_address
end
end