2014-02-08 22:08:49 -05:00
|
|
|
class Profiles::EmailsController < ApplicationController
|
|
|
|
layout "profile"
|
|
|
|
|
|
|
|
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
|
|
|
|
2014-02-08 22:08:49 -05:00
|
|
|
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
|
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
|