coton_app/app/controllers/public/my_account_controller.rb
2018-12-15 14:06:53 +01:00

34 lines
426 B
Ruby
Executable File

class Public::MyAccountController < ApplicationController
layout "public"
before_filter :auth_p_customer
before_filter :p_customer_validated
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