Releases
1.9.2POST Deployment

POST Deployment v1.9.2

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,

  1. Go to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Search Configuration section.
  4. Within Search Results, open the Designs list.
  5. 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,

  1. Access to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Search Configuration section.
  4. Within Search Results, open the Designs list.
  5. 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:

  1. Access to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Addons section.
  4. Open the Community addon.
  5. Go to Forms.
  6. Go to Creation form.
  7. In the Get endpoint field, replace the old value for this new one:
{@togoSettings.apiEndpoints.setup}/user/community/catalogValues
  1. 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:

  1. Access to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Addons section.
  4. Open the Community addon.
  5. Go to Forms.
  6. Go to Edition form.
  7. 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:

  1. Access to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Addons section.
  4. Open the Community addon.
  5. Go to Forms.
  6. Go to Togify form within Additional forms section.
  7. 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:

  1. Access to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Addons section.
  4. Open the Events addon.
  5. Go to Content type.
  6. Look for the column name EventDate.
  7. 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:

  1. Access to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Addons section.
  4. Open the Events addon.
  5. Go to Content type.
  6. 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:

  1. Access to Syntphony Settings.
  2. Enter the This Tenant menu.
  3. Enter the Addons section.
  4. Open the Events addon.
  5. Go to Content type.
  6. 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.