From 1772ae148e01fc0ec3864219701a0541e8befee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Gaya?= <sebastien.gaya@gmail.com> Date: Thu, 17 Feb 2022 19:10:44 +0100 Subject: [PATCH] fix --- app/models/communication/website/with_index_pages.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/communication/website/with_index_pages.rb b/app/models/communication/website/with_index_pages.rb index 8619f8068..d90ab3715 100644 --- a/app/models/communication/website/with_index_pages.rb +++ b/app/models/communication/website/with_index_pages.rb @@ -13,7 +13,8 @@ module Communication::Website::WithIndexPages klass.where(communication_website_id: id, kind: kind).first_or_create( title: I18n.t("#{key}.title"), path: I18n.t("#{key}.path"), - description: I18n.t("#{key}.description") + description: I18n.t("#{key}.description"), + university_id: university_id ) end end -- GitLab