From b57a75b166dce41adf89f8f8e3f6b7a3282f1324 Mon Sep 17 00:00:00 2001
From: Arnaud Levy <contact@arnaudlevy.com>
Date: Tue, 3 Jan 2023 17:20:59 +0100
Subject: [PATCH] merci sebouchu

---
 app/models/communication/website/page/with_path.rb | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/app/models/communication/website/page/with_path.rb b/app/models/communication/website/page/with_path.rb
index 7c4bab76c..1cafe5dba 100644
--- a/app/models/communication/website/page/with_path.rb
+++ b/app/models/communication/website/page/with_path.rb
@@ -75,13 +75,7 @@ module Communication::Website::Page::WithPath
   end
 
   def slug_must_have_proper_format
-    # TODO method equivalent of:
-    # validates :slug,
-    #           format: {
-    #             with: /\A[a-z0-9\-]+\z/,
-    #             message: I18n.t('slug_error')
-    #           },
-    #           unless: :kind_home?
+    errors.add(:slug, I18n.t('slug_error')) unless /\A[a-z0-9\-]+\z/.match?(slug)
   end
 
 end
-- 
GitLab