TagSelect field type

(cherry picked from commit 09347f79c5c486ccb88d732c1bac1cacc668536c)
This commit is contained in:
Qstick 2020-01-06 23:31:33 -05:00
commit f8f857376a
6 changed files with 113 additions and 2 deletions

View file

@ -102,7 +102,7 @@ namespace Lidarr.Http.ClientSchema
Section = fieldAttribute.Section
};
if (fieldAttribute.Type == FieldType.Select)
if (fieldAttribute.Type == FieldType.Select || fieldAttribute.Type == FieldType.TagSelect)
{
if (fieldAttribute.SelectOptionsProviderAction.IsNotNullOrWhiteSpace())
{

View file

@ -63,7 +63,8 @@ namespace NzbDrone.Core.Annotations
Captcha,
OAuth,
Device,
Playlist
Playlist,
TagSelect
}
public enum HiddenType