This commit is contained in:
2023-01-17 01:58:09 +00:00
parent b81e5c1a83
commit 64337d1e42
9 changed files with 148 additions and 16 deletions

View File

@@ -652,8 +652,8 @@ namespace Sockeye.Biz
return;
}
//MISC product group is not valid for keys
if (proposedObj.PGroup == ProductGroup.Misc)
//MISC / NOTSET product group are not valid for keys
if (proposedObj.PGroup == ProductGroup.Misc || proposedObj.PGroup == ProductGroup.NotSet )
{
AddError(ApiErrorCode.VALIDATION_INVALID_VALUE, "pGroup");
return;

View File

@@ -5,7 +5,8 @@ namespace Sockeye.Biz
Misc = 0,
AyaNova7 = 1,
RavenPerpetual = 2,
RavenSubscription = 3
RavenSubscription = 3,
NotSet = 4
}
}//eons