This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/controllers/public/my_account_controller.rb
2021-08-23 10:26:02 +02:00

35 lines
378 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