diff options
-rw-r--r-- | docs/api/schemas/latest/patchwork.yaml | 12 | ||||
-rw-r--r-- | docs/api/schemas/patchwork.j2 | 12 | ||||
-rw-r--r-- | docs/api/schemas/v1.0/patchwork.yaml | 12 | ||||
-rw-r--r-- | docs/api/schemas/v1.1/patchwork.yaml | 12 | ||||
-rw-r--r-- | docs/api/schemas/v1.2/patchwork.yaml | 12 | ||||
-rw-r--r-- | patchwork/tests/utils.py | 2 |
6 files changed, 46 insertions, 16 deletions
diff --git a/docs/api/schemas/latest/patchwork.yaml b/docs/api/schemas/latest/patchwork.yaml index 8d5acdd..0ebcbf4 100644 --- a/docs/api/schemas/latest/patchwork.yaml +++ b/docs/api/schemas/latest/patchwork.yaml @@ -1590,9 +1590,15 @@ components: - properties: headers: title: Headers - type: array - items: - type: string + anyOf: + - type: object + additionalProperties: + type: array + items: + type: string + - type: object + additionalProperties: + type: string readOnly: true content: title: Content diff --git a/docs/api/schemas/patchwork.j2 b/docs/api/schemas/patchwork.j2 index 98ca16c..56ecd83 100644 --- a/docs/api/schemas/patchwork.j2 +++ b/docs/api/schemas/patchwork.j2 @@ -1656,9 +1656,15 @@ components: - properties: headers: title: Headers - type: array - items: - type: string + anyOf: + - type: object + additionalProperties: + type: array + items: + type: string + - type: object + additionalProperties: + type: string readOnly: true content: title: Content diff --git a/docs/api/schemas/v1.0/patchwork.yaml b/docs/api/schemas/v1.0/patchwork.yaml index a2b1b85..680d4d6 100644 --- a/docs/api/schemas/v1.0/patchwork.yaml +++ b/docs/api/schemas/v1.0/patchwork.yaml @@ -1386,9 +1386,15 @@ components: - properties: headers: title: Headers - type: array - items: - type: string + anyOf: + - type: object + additionalProperties: + type: array + items: + type: string + - type: object + additionalProperties: + type: string readOnly: true content: title: Content diff --git a/docs/api/schemas/v1.1/patchwork.yaml b/docs/api/schemas/v1.1/patchwork.yaml index dcec32e..d5e441f 100644 --- a/docs/api/schemas/v1.1/patchwork.yaml +++ b/docs/api/schemas/v1.1/patchwork.yaml @@ -1411,9 +1411,15 @@ components: - properties: headers: title: Headers - type: array - items: - type: string + anyOf: + - type: object + additionalProperties: + type: array + items: + type: string + - type: object + additionalProperties: + type: string readOnly: true content: title: Content diff --git a/docs/api/schemas/v1.2/patchwork.yaml b/docs/api/schemas/v1.2/patchwork.yaml index 0007cd2..a6b811f 100644 --- a/docs/api/schemas/v1.2/patchwork.yaml +++ b/docs/api/schemas/v1.2/patchwork.yaml @@ -1590,9 +1590,15 @@ components: - properties: headers: title: Headers - type: array - items: - type: string + anyOf: + - type: object + additionalProperties: + type: array + items: + type: string + - type: object + additionalProperties: + type: string readOnly: true content: title: Content diff --git a/patchwork/tests/utils.py b/patchwork/tests/utils.py index 7759c8f..1a7baa2 100644 --- a/patchwork/tests/utils.py +++ b/patchwork/tests/utils.py @@ -228,7 +228,7 @@ def create_cover(**kwargs): 'msgid': make_msgid(), 'name': 'testpatch%d' % num, 'headers': '', - 'content': '', + 'content': 'foo', } values.update(kwargs) |