WhitelabelController: GetWhiteLabelLogos: removed notification field from response

This commit is contained in:
NikitaVashchuk 2023-04-19 13:03:01 +05:00
parent a50792b946
commit a6bb9aac83

View File

@ -164,6 +164,11 @@ public class WhitelabelController : BaseSettingsController
foreach (var logoType in (WhiteLabelLogoTypeEnum[])Enum.GetValues(typeof(WhiteLabelLogoTypeEnum)))
{
if (logoType == WhiteLabelLogoTypeEnum.Notification)
{
continue;
}
var result = new WhiteLabelItemDto
{
Name = logoType.ToString(),