Don’t require a domain when updating the letter branding

So the admin is free to stop passing it in.
This commit is contained in:
Chris Hill-Scott
2019-04-12 16:05:29 +01:00
parent a39ed098b8
commit 9c0b9171a1

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")
} }