From 32792b4ba4037191a82ab394531e0d99358c8550 Mon Sep 17 00:00:00 2001
From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com>
Date: Wed, 22 Jan 2025 14:21:54 +0100
Subject: [PATCH] feat: removes deprecated setting `HideBackOfficeLogo`
---
src/Umbraco.Core/Configuration/Models/ContentSettings.cs | 8 --------
1 file changed, 8 deletions(-)
diff --git a/src/Umbraco.Core/Configuration/Models/ContentSettings.cs b/src/Umbraco.Core/Configuration/Models/ContentSettings.cs
index 1ac64b2c21..4eecac3fd7 100644
--- a/src/Umbraco.Core/Configuration/Models/ContentSettings.cs
+++ b/src/Umbraco.Core/Configuration/Models/ContentSettings.cs
@@ -23,7 +23,6 @@ public class ContentSettings
internal const string StaticLoginLogoImage = "assets/logo_light.svg";
internal const string StaticLoginLogoImageAlternative = "assets/logo_dark.svg";
internal const string StaticBackOfficeLogo = "assets/logo.svg";
- internal const bool StaticHideBackOfficeLogo = false;
internal const bool StaticDisableDeleteWhenReferenced = false;
internal const bool StaticDisableUnpublishWhenReferenced = false;
internal const bool StaticAllowEditInvariantFromNonDefault = false;
@@ -91,13 +90,6 @@ public class ContentSettings
[DefaultValue(StaticBackOfficeLogo)]
public string BackOfficeLogo { get; set; } = StaticBackOfficeLogo;
- ///
- /// Gets or sets a value indicating whether to hide the backoffice umbraco logo or not.
- ///
- [DefaultValue(StaticHideBackOfficeLogo)]
- [Obsolete("This setting is no longer used and will be removed in future versions. An alternative BackOffice logo can be set using the BackOfficeLogo setting.")]
- public bool HideBackOfficeLogo { get; set; } = StaticHideBackOfficeLogo;
-
///
/// Gets or sets a value indicating whether to disable the deletion of items referenced by other items.
///