Fixed: Disallow tags creation with empty label

This commit is contained in:
Bogdan 2025-04-07 15:54:06 +03:00
parent e4a36ca388
commit 556f0ea54b

View file

@ -1,4 +1,5 @@
using System.Collections.Generic;
using FluentValidation;
using Lidarr.Http;
using Lidarr.Http.REST;
using Lidarr.Http.REST.Attributes;
@ -23,6 +24,8 @@ namespace Lidarr.Api.V1.Tags
: base(signalRBroadcaster)
{
_tagService = tagService;
SharedValidator.RuleFor(c => c.Label).NotEmpty();
}
public override TagResource GetResourceById(int id)