Welcome to mirror list, hosted at ThFree Co, Russian Federation.

emails_controller.rb « profiles « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 954c98c0d9ff6775ba75fa3d9d9090a2787088de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
class Profiles::EmailsController < ApplicationController
  layout "profile"

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

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

    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

    current_user.set_notification_email
    current_user.set_public_email
    current_user.save if current_user.notification_email_changed? or current_user.public_email_changed?

    respond_to do |format|
      format.html { redirect_to profile_emails_url }
      format.js { render nothing: true }
    end
  end

  private

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