mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-05 02:41:14 -05:00
reformat
This commit is contained in:
@@ -5,10 +5,7 @@ get_template_by_id_request = {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"description": "schema for parameters allowed when getting template by id",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": uuid,
|
||||
"version": {"type": ["integer", "null"], "minimum": 1}
|
||||
},
|
||||
"properties": {"id": uuid, "version": {"type": ["integer", "null"], "minimum": 1}},
|
||||
"required": ["id"],
|
||||
"additionalProperties": False,
|
||||
}
|
||||
@@ -24,12 +21,12 @@ get_template_by_id_response = {
|
||||
"created_at": {
|
||||
"format": "date-time",
|
||||
"type": "string",
|
||||
"description": "Date+time created"
|
||||
"description": "Date+time created",
|
||||
},
|
||||
"updated_at": {
|
||||
"format": "date-time",
|
||||
"type": ["string", "null"],
|
||||
"description": "Date+time updated"
|
||||
"description": "Date+time updated",
|
||||
},
|
||||
"created_by": {"type": "string"},
|
||||
"version": {"type": "integer"},
|
||||
@@ -37,7 +34,16 @@ get_template_by_id_response = {
|
||||
"subject": {"type": ["string", "null"]},
|
||||
"name": {"type": "string"},
|
||||
},
|
||||
"required": ["id", "type", "created_at", "updated_at", "version", "created_by", "body", "name"],
|
||||
"required": [
|
||||
"id",
|
||||
"type",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"version",
|
||||
"created_by",
|
||||
"body",
|
||||
"name",
|
||||
],
|
||||
}
|
||||
|
||||
post_template_preview_request = {
|
||||
@@ -45,11 +51,8 @@ post_template_preview_request = {
|
||||
"description": "POST template schema",
|
||||
"type": "object",
|
||||
"title": "POST v2/template/{id}/preview",
|
||||
"properties": {
|
||||
"id": uuid,
|
||||
"personalisation": personalisation
|
||||
},
|
||||
"required": ["id"]
|
||||
"properties": {"id": uuid, "personalisation": personalisation},
|
||||
"required": ["id"],
|
||||
}
|
||||
|
||||
post_template_preview_response = {
|
||||
@@ -76,6 +79,6 @@ def create_post_template_preview_response(template, template_object):
|
||||
"type": template.template_type,
|
||||
"version": template.version,
|
||||
"body": template_object.content_with_placeholders_filled_in,
|
||||
"html": getattr(template_object, 'html_body', None),
|
||||
"subject": getattr(template_object, 'subject', None),
|
||||
"html": getattr(template_object, "html_body", None),
|
||||
"subject": getattr(template_object, "subject", None),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user