List of critical changes in version 3.11.36
Critical changes
Administration
It is now possible to restrict recording an object/action history by using the settings file - EntityModelHistorySettings.xml. The settings file is created in the configuration folder. The operating system monitors the changes, and when the file is changed, ELMA recalculates the restrictions.
Example of the settings file:
<?xml version="1.0" encoding="utf-8"?><?xml version="1.0" encoding="utf-8"?>
<EntityModelHistoryRestriction xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<EntityRestrictions>
<!--restrict certain actions with the object–->
<EntityRestriction>
<EntityName>Task</EntityName>
<ActionNames>
<string>Create</string>
<string>Update</string>
<string>Delete</string>
</ActionNames>
</EntityRestriction>
<!--restrict all actions with the object–->
<EntityRestriction>
<EntityName>WorkflowInstance</EntityName>
</EntityRestriction> </EntityRestrictions>
<ActionRestrictions>
<!--restrict action with certain object–->
<ActionRestriction>
<ActionName>Edit</ActionName>
<EntityNames>
<string>WorkflowInstance</string>
</EntityNames>
</ActionRestriction>
<!--restrict action with all objects–->
<ActionRestriction>
<ActionName>Create</ActionName>
</ActionRestriction>
</ActionRestrictions>
</EntityModelHistoryRestriction>