diff --git a/services/operation_services.py b/services/operation_services.py index 792f0fa1dca4620cf4d8309778f8b4da678a0788..beadef457f5bb2d2efd7d9ea30d4532e21dfceff 100644 --- a/services/operation_services.py +++ b/services/operation_services.py @@ -72,6 +72,7 @@ class OperationsService(Component): "name": n.name, "date_actu": n.date_actu if n.date_actu else None, "content": n.content, + "content_html": n.content_html, } ) return datas @@ -161,6 +162,7 @@ class OperationsService(Component): "name": n.name, "date_actu": n.date_actu, "content": n.content, + "content_html": n.content_html, } ) @@ -669,6 +671,7 @@ class OperationsService(Component): "name": {"type": "string"}, "date_actu": {"type": "date"}, "content": {"type": "string", "nullable": True}, + "content_html": {"type": "string", "nullable": True}, }, }, }, @@ -716,6 +719,7 @@ class OperationsService(Component): "name": {"type": "string"}, "date_actu": {"type": "date", "nullable": True}, "content": {"type": "string", "nullable": True}, + "content_html": {"type": "string", "nullable": True}, }, }, },