diff --git a/app/models/customer.rb b/app/models/customer.rb index b829091..99c4951 100755 --- a/app/models/customer.rb +++ b/app/models/customer.rb @@ -169,7 +169,11 @@ class Customer < ActiveRecord::Base def anonyme_nick - "Utilisateur#{id}" + if id == 46 + "Patrick Picton (fondateur)" + else + "Utilisateur#{id}" + end end