mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 22:59:19 +10:00
Emails are used to associate commits with users. The emails are not verified and don't have to be valid email addresses. They are assigned on a first come, first serve basis. Notifications are sent when an email is added.
27 lines
575 B
Ruby
27 lines
575 B
Ruby
class Profiles::EmailsController < ApplicationController
|
|
layout "profile"
|
|
|
|
def index
|
|
@primary = current_user.email
|
|
@emails = current_user.emails
|
|
end
|
|
|
|
def create
|
|
@email = current_user.emails.new(params[:email])
|
|
|
|
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
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to profile_emails_url }
|
|
format.js { render nothing: true }
|
|
end
|
|
end
|
|
end
|