Skip to content

Commit

Permalink
fix: allow tags to be empty strings
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Jan 11, 2022
1 parent 9cb3642 commit 357fe9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/v1/resources/units.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const baseSchema = {
countryJuridictionOfOwner: Joi.string().required(),
inCountryJuridictionOfOwner: Joi.string().required(),
intendedBuyerOrgUid: Joi.string().optional(),
tags: Joi.string().optional(),
tags: Joi.string().allow('').optional(),
tokenIssuanceHash: Joi.string().required(),
marketplaceIdentifier: Joi.string().optional(),
};
Expand Down

0 comments on commit 357fe9a

Please sign in to comment.