Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The current implementation of the the Appointments in the Upcoming Appointment feed includes other users appointments if Delegated Access is configured. To disable the population of the Upcoming Appoinments the following custom viaworks Locator index rule can be added:

Code Block
languagexml
themeEmacs
titleOverride Event Date
<rules>
  <rule name="exchange - override event_date" >
    <conditions>
      <field name="config.connector_type@connector" value="exchange" multiMode="any">
          <field name="document_doctype" value="appointment" multiMode="any" />
      </field>
    </conditions>
    <actions>
      <remove field="event_date" multiMode="all" />
    </actions>
  </rule>
</rules>

...