From 9d08fcd3d6b3f1debad9d05567c88c3d89242ac7 Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Wed, 8 Mar 2023 14:46:44 +0100 Subject: [PATCH] fix --- .../admin/communication/extranets/posts_controller.rb | 6 +----- app/models/communication/extranet/post.rb | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/app/controllers/admin/communication/extranets/posts_controller.rb b/app/controllers/admin/communication/extranets/posts_controller.rb index 578f80b73..256602b6e 100644 --- a/app/controllers/admin/communication/extranets/posts_controller.rb +++ b/app/controllers/admin/communication/extranets/posts_controller.rb @@ -3,7 +3,6 @@ class Admin::Communication::Extranets::PostsController < Admin::Communication::E def index breadcrumb - add_breadcrumb Communication::Extranet.human_attribute_name(:feature_posts) end def show @@ -35,7 +34,6 @@ class Admin::Communication::Extranets::PostsController < Admin::Communication::E if @post.save redirect_to admin_communication_extranet_post_path(@post), notice: t('admin.successfully_created_html', model: @post.to_s) else - load_categories breadcrumb render :new, status: :unprocessable_entity end @@ -46,7 +44,6 @@ class Admin::Communication::Extranets::PostsController < Admin::Communication::E if @post.update(post_params) redirect_to admin_communication_extranet_post_path(@post), notice: t('admin.successfully_updated_html', model: @post.to_s) else - load_categories breadcrumb add_breadcrumb t('edit') render :edit, status: :unprocessable_entity @@ -62,8 +59,7 @@ class Admin::Communication::Extranets::PostsController < Admin::Communication::E def breadcrumb super - add_breadcrumb Communication::Extranet::Post.model_name.human(count: 2), - admin_communication_extranet_posts_path + add_breadcrumb Communication::Extranet::Post.model_name.human(count: 2), admin_communication_extranet_posts_path breadcrumb_for @post end diff --git a/app/models/communication/extranet/post.rb b/app/models/communication/extranet/post.rb index 98bba0b10..063fc6dbb 100644 --- a/app/models/communication/extranet/post.rb +++ b/app/models/communication/extranet/post.rb @@ -36,7 +36,7 @@ class Communication::Extranet::Post < ApplicationRecord include WithPermalink include WithSlug - belongs_to :author, class_name: 'University::Person' + belongs_to :author, class_name: 'University::Person', optional: true belongs_to :extranet, class_name: 'Communication::Extranet' validates :title, presence: true -- GitLab