2015-04-30 13:06:18 -04:00
|
|
|
class Profiles::EmailsController < Profiles::ApplicationController
|
2017-09-12 11:36:59 -04:00
|
|
|
before_action :find_email, only: [:destroy, :resend_confirmation_instructions]
|
|
|
|
|
2014-02-08 22:08:49 -05:00
|
|
|
def index
|
2017-10-01 11:07:26 -04:00
|
|
|
@primary_email = current_user.email
|
2017-08-15 06:27:37 -04:00
|
|
|
@emails = current_user.emails.order_id_desc
|
2014-02-08 22:08:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2017-09-27 10:39:10 -04:00
|
|
|
@email = Emails::CreateService.new(current_user, email_params.merge(user: current_user)).execute
|
2017-09-04 13:23:33 -04:00
|
|
|
unless @email.errors.blank?
|
2015-04-30 10:17:03 -04:00
|
|
|
flash[:alert] = @email.errors.full_messages.first
|
|
|
|
end
|
2014-02-08 22:08:49 -05:00
|
|
|
|
|
|
|
redirect_to profile_emails_url
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2017-10-05 06:48:22 -04:00
|
|
|
Emails::DestroyService.new(current_user, user: current_user).execute(@email)
|
2015-02-06 18:23:58 -05:00
|
|
|
|
2014-02-08 22:08:49 -05:00
|
|
|
respond_to do |format|
|
2017-06-06 18:45:16 -04:00
|
|
|
format.html { redirect_to profile_emails_url, status: 302 }
|
2016-03-15 21:16:25 -04:00
|
|
|
format.js { head :ok }
|
2014-02-08 22:08:49 -05:00
|
|
|
end
|
|
|
|
end
|
2014-06-26 16:24:17 -04:00
|
|
|
|
2017-09-09 09:55:07 -04:00
|
|
|
def resend_confirmation_instructions
|
2017-10-05 06:48:22 -04:00
|
|
|
if Emails::ConfirmService.new(current_user, user: current_user).execute(@email)
|
2017-09-09 09:55:07 -04:00
|
|
|
flash[:notice] = "Confirmation email sent to #{@email.email}"
|
|
|
|
else
|
|
|
|
flash[:alert] = "There was a problem sending the confirmation email"
|
|
|
|
end
|
2017-10-01 11:07:26 -04:00
|
|
|
|
2017-09-09 09:55:07 -04:00
|
|
|
redirect_to profile_emails_url
|
|
|
|
end
|
2017-09-09 12:32:27 -04:00
|
|
|
|
2014-06-26 16:24:17 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def email_params
|
|
|
|
params.require(:email).permit(:email)
|
|
|
|
end
|
2017-09-14 10:18:32 -04:00
|
|
|
|
2017-09-12 11:36:59 -04:00
|
|
|
def find_email
|
|
|
|
@email = current_user.emails.find(params[:id])
|
|
|
|
end
|
2014-02-08 22:08:49 -05:00
|
|
|
end
|