BigW Consortium Gitlab

emails_controller.rb 755 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
class Profiles::EmailsController < ApplicationController
  layout "profile"

  def index
    @primary = current_user.email
    @emails = current_user.emails
  end

  def create
10
    @email = current_user.emails.new(email_params)
11

12 13 14 15 16 17 18 19 20
    flash[:alert] = @email.errors.full_messages.first unless @email.save

    redirect_to profile_emails_url
  end

  def destroy
    @email = current_user.emails.find(params[:id])
    @email.destroy

21 22 23
    current_user.set_notification_email
    current_user.save if current_user.notification_email_changed?

24 25 26 27 28
    respond_to do |format|
      format.html { redirect_to profile_emails_url }
      format.js { render nothing: true }
    end
  end
29 30 31 32 33 34

  private

  def email_params
    params.require(:email).permit(:email)
  end
35
end