gitlab-org--gitlab-foss/app/controllers/profiles/emails_controller.rb

49 lines
1.3 KiB
Ruby
Raw Normal View History

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