2015-04-30 13:06:18 -04:00
|
|
|
class Profiles::EmailsController < Profiles::ApplicationController
|
2014-02-08 22:08:49 -05:00
|
|
|
def index
|
|
|
|
@primary = current_user.email
|
|
|
|
@emails = current_user.emails
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2014-06-26 16:24:17 -04:00
|
|
|
@email = current_user.emails.new(email_params)
|
2014-04-07 07:09:29 -04:00
|
|
|
|
2015-04-30 10:17:03 -04:00
|
|
|
if @email.save
|
|
|
|
NotificationService.new.new_email(@email)
|
|
|
|
else
|
|
|
|
flash[:alert] = @email.errors.full_messages.first
|
|
|
|
end
|
2014-02-08 22:08:49 -05:00
|
|
|
|
|
|
|
redirect_to profile_emails_url
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@email = current_user.emails.find(params[:id])
|
|
|
|
@email.destroy
|
|
|
|
|
2015-04-30 10:17:03 -04:00
|
|
|
current_user.update_secondary_emails!
|
2015-02-06 18:23:58 -05:00
|
|
|
|
2014-02-08 22:08:49 -05:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to profile_emails_url }
|
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
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def email_params
|
|
|
|
params.require(:email).permit(:email)
|
|
|
|
end
|
2014-02-08 22:08:49 -05:00
|
|
|
end
|