From eef6f4ff7c7a4fc2201809d8e3ad2708d85e21f5 Mon Sep 17 00:00:00 2001 From: Nicolas Bally Date: Mon, 17 Jul 2017 17:06:38 +0200 Subject: [PATCH] utilsateur 46 --- app/models/customer.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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