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
The GET endpoint on the application layouts resource currently returns a username along with the layout itself. The username is not needed on the frontend, so can be removed from the contract.
Work Required
Back end:
Change ApplicationLayoutController#getApplicationLayout to return an ObjectNode instead of the DTO
Extract the definition from the ApplicationLayout entity
❓ In ApplicationLayoutController#getApplicationLayout or ApplicationLayoutService#getApplicationLayout?
Delete ApplicationLayoutDto
Front end:
Edit RemoteLayoutPersistenceManager#loadApplicationLayout to reflect changes above
Delete redundant ApplicationLayout type
The text was updated successfully, but these errors were encountered:
Background
The GET endpoint on the application layouts resource currently returns a username along with the layout itself. The username is not needed on the frontend, so can be removed from the contract.
Work Required
ApplicationLayoutController#getApplicationLayout
to return anObjectNode
instead of the DTOApplicationLayout
entityApplicationLayoutController#getApplicationLayout
orApplicationLayoutService#getApplicationLayout
?ApplicationLayoutDto
RemoteLayoutPersistenceManager#loadApplicationLayout
to reflect changes aboveApplicationLayout
typeThe text was updated successfully, but these errors were encountered: