Merge pull request #2463 from alphagov/remove-domain-required-letter-branding-schema

Don’t require a domain when updating the letter branding
This commit is contained in:
Chris Hill-Scott
2019-04-12 16:16:00 +01:00
committed by GitHub

View File

@@ -7,5 +7,5 @@ post_letter_branding_schema = {
"filename": {"type": ["string", "null"]}, "filename": {"type": ["string", "null"]},
"domain": {"type": ["string", "null"]}, "domain": {"type": ["string", "null"]},
}, },
"required": ("name", "filename", "domain") "required": ("name", "filename")
} }