You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Layout definitions are currently being transferred to and from the server as raw string values in a single JSON field. Since the layout is defined in a JSON format, we want to embed this as a fully formed node within the request/response.
Work Required
Convert the definition fields in all layout DTOs and entities from String to JsonNode (import from Jackson databind)
Annotate the entity field with @Convert to make use of the existing JsonNodeConverter
Notes
This pattern was implemented for the application layouts resource on the same server
Started working on this whilst I was waiting for #25 to be reviewed. Now that's been merged I'll be focusing on #66, so this can be picked up by someone else.
Background
Layout definitions are currently being transferred to and from the server as raw string values in a single JSON field. Since the layout is defined in a JSON format, we want to embed this as a fully formed node within the request/response.
Work Required
definition
fields in all layout DTOs and entities fromString
toJsonNode
(import from Jackson databind)@Convert
to make use of the existingJsonNodeConverter
Notes
The text was updated successfully, but these errors were encountered: