41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
class EmailsController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
|
|
def show
|
|
@email_address = authorize EmailAddress.find_by_user_id!(params[:user_id])
|
|
respond_with(@email_address)
|
|
end
|
|
|
|
def edit
|
|
@user = authorize User.find(params[:user_id]), policy_class: EmailAddressPolicy
|
|
respond_with(@user)
|
|
end
|
|
|
|
def update
|
|
@user = authorize User.find(params[:user_id]), policy_class: EmailAddressPolicy
|
|
|
|
if User.authenticate(@user.name, params[:user][:password])
|
|
@user.update(email_address_attributes: { address: params[:user][:email] })
|
|
else
|
|
@user.errors[:base] << "Password was incorrect"
|
|
end
|
|
|
|
if @user.errors.none?
|
|
flash[:notice] = "Email updated"
|
|
UserMailer.email_change_confirmation(@user).deliver_later
|
|
respond_with(@user, location: settings_url)
|
|
else
|
|
flash[:notice] = @user.errors.full_messages.join("; ")
|
|
respond_with(@user)
|
|
end
|
|
end
|
|
|
|
def verify
|
|
@email_address = authorize EmailAddress.find_by_user_id!(params[:user_id])
|
|
@email_address.update!(is_verified: true)
|
|
|
|
flash[:notice] = "Email address verified"
|
|
redirect_to @email_address.user
|
|
end
|
|
end
|