pollen_app/app/controllers/public/my_account_controller.rb
Nicolas Bally 120e9803eb initial
2020-04-28 14:51:42 +02:00

35 lines
390 B
Ruby

class Public::MyAccountController < ApplicationController
layout "public"
before_action :auth_p_customer
def my_reseauxes
end
def index
end
def edit_infos
end
def reconfirm
@no_search = true
CustomerMailer.confirm(current_customer).deliver
redirect_to public_my_account_path, :notice => "Le mail vous a été renvoyé"
end
end