POST Deployment v1.9.2
Promoted contents
MANDATORY
We continue to improve the user experience. In this case, we have redesigned the contents promoted in Search.
Updating promoted content design
To have the latest version it is necessary to update the card in the Search settings. To do this,
- Go to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Search Configuration section.
- Within Search Results, open the Designs list.
- Select the Promoted card design and replace the JSON with the attached Promoted content card.json file.
Remove obsolete design
Also, we will delete the obsolete design Compact promoted card inside the same section,
- Access to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Search Configuration section.
- Within Search Results, open the Designs list.
- Delete the design Compact promoted card with the bin button.
Updating community addon
MANDATORY
After refactoring the community creation, it is necessary to update the community addon forms to use the new services.
Updating forms
Creation Form
We update the creation form:
- Access to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Addons section.
- Open the Community addon.
- Go to Forms.
- Go to Creation form.
- In the Get endpoint field, replace the old value for this new one:
{@togoSettings.apiEndpoints.setup}/user/community/catalogValues
- In the Design tab, at the of the JSON, replace the value in the endpoint parameter for this new one:
{@togoSettings.apiEndpoints.setup}/user/provisioning/add
Edition Form
We update the edit form:
- Access to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Addons section.
- Open the Community addon.
- Go to Forms.
- Go to Edition form.
- In the Design tab, at the of the JSON, replace the value in the endpoint parameter for this new one:
{@togoSettings.apiEndpoints.setup}/user/provisioning/set
Togify Form
We update the display form:
- Access to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Addons section.
- Open the Community addon.
- Go to Forms.
- Go to Togify form within Additional forms section.
- In the Design tab, at the of the JSON, replace the value in the endpoint parameter for this new one:
{@togoSettings.apiEndpoints.setup}/user/provisioning/migrate
NOTE: REMEMBER TO PUBLISH THE ADDON FOR THE CHANGES TO TAKE EFFECT AND TO REPROVISION ALL COMMUNITIES THAT HAVE THIS ADDON.
Updating events addon
MANDATORY
After refactoring, it is necessary to update the events addon forms to use the new columns.
Updating content type
Update columns
We update the EventDate column:
- Access to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Addons section.
- Open the Events addon.
- Go to Content type.
- Look for the column name EventDate.
- Replace the old value for this new one:
{
"uniqueId": "64cd368d-2f95-4bfc-a1f9-8d4324ecb007",
"title": "Event Date",
"name": "EventDate",
"description": "Event Date",
"type": "DateTime",
"defaultValue": "",
"isBase": true,
"searchProperty": "EventDateOWSDATE"
}
Add columns
We create the TogoDescription column:
- Access to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Addons section.
- Open the Events addon.
- Go to Content type.
- In the columns array, add this new value:
{
"numberOfLines": 6,
"unlimitedLengthInDocumentLibrary": true,
"uniqueId": "c3d350e3-7d1f-49ea-b244-3f55021ac60d",
"title": "Summary",
"name": "TogoDescription",
"description": "Description",
"type": "Note",
"defaultValue": "",
"isBase": true,
"searchProperty": "TogoDescriptionOWSMTXT"
}
We create the Description column:
- Access to Syntphony Settings.
- Enter the This Tenant menu.
- Enter the Addons section.
- Open the Events addon.
- Go to Content type.
- In the columns array, add this new value:
{
"numberOfLines": 6,
"unlimitedLengthInDocumentLibrary": true,
"uniqueId": "9da97a8a-1da5-4a77-98d3-4bc10456e700",
"title": "Description",
"name": "Description",
"description": "",
"type": "Note",
"defaultValue": "",
"isBase": true,
"searchProperty": "DescriptionOWSMTXT"
}
NOTE: REMEMBER TO PUBLISH THE ADDON FOR THE CHANGES TO TAKE EFFECT AND TO REPROVISION ALL COMMUNITIES THAT HAVE THIS ADDON.