34 lines
426 B
Ruby
Executable File
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
|