Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
devel:documentation:modules_extras [2020/11/27 10:48]
sourek [Table]
devel:documentation:modules_extras [2021/05/27 11:56]
kopro [Workflows for approval of role assignment]
Line 116: Line 116:
 idm.sec.extras.configuration.titlesAfter=Ph.D.,Th.D.,CSc.,DrSc.,dr. h. c.,DiS.,MBA,LL.M.,FESC,MHA,FEBO,FESO,FEBU,FACC idm.sec.extras.configuration.titlesAfter=Ph.D.,Th.D.,CSc.,DrSc.,dr. h. c.,DiS.,MBA,LL.M.,FESC,MHA,FEBO,FESO,FEBU,FACC
 idm.sec.extras.configuration.titlesBefore=Bc.,BcA.,Ing.,Ing. arch.,MUDr.,MVDr.,MgA.,Mgr.,JUDr.,PhDr.,RNDr.,PharmDr.,ThLic.,ThDr.,prof.,doc.,PaedDr.,Dr.,PhMr.,MDDr. idm.sec.extras.configuration.titlesBefore=Bc.,BcA.,Ing.,Ing. arch.,MUDr.,MVDr.,MgA.,Mgr.,JUDr.,PhDr.,RNDr.,PharmDr.,ThLic.,ThDr.,prof.,doc.,PaedDr.,Dr.,PhMr.,MDDr.
 +</code> 
 +in version 2.8.0 was added the option to select a separator for source string and for titles before and after values in IdM. 
 +<code> 
 +idm.sec.extras.configuration.titlesSourceSeparator - a character, that separates titles in the source. Default"
 +idm.sec.extras.configuration.titlesBeforeSeparator - titles before separator for IdM. Default",
 +idm.sec.extras.configuration.titlesAfterSeparator - titles before separator for IdM. Default", "
 </code> </code>
  
Line 124: Line 129:
  
 ===== Groups synchronization workflow  ===== ===== Groups synchronization workflow  =====
-Since module version **1.4.0** was exists better workflow for groups synchronization than in core. This workflow has same features as product. In product will be available same feature as this workflow but with configuration from GUI+Since module version **1.4.0** there exists improved workflow in the extras module for groups synchronization than in the core moduleThe workflow **Extras Synchronization - Roles from LDAP** (extrasSyncRoleLdap) has more features and some fixed bugs than the product workflow syncRoleLdapThe workflow in the product is not developed anymore, because we plan to add more user-friendly configuration of the feature in future versions of the product. 
 + 
 +Documentation for configuration is available in [[tutorial:dev:ad_groups_sync_workflow#set_aplication_properties|Group synchronization workflow - Application properties]]. 
 + 
 +Note: the workflow extrasSyncRoleLdap depends on some services implemented in the extras module, so to use this workflow, you must deploy the whole module to CzechIdM. 
  
-Documentation for configuration is available [[tutorial:dev:ad_groups_sync_workflow|]]. 
  
 ===== Workflow to disable contract on MISSING_ACCOUNT ===== ===== Workflow to disable contract on MISSING_ACCOUNT =====
Line 162: Line 171:
  
 Documentation is available [[tutorial:adm:modules_extras_wf|there]] Documentation is available [[tutorial:adm:modules_extras_wf|there]]
 +
 +===== Script for soft abbreviate strings (extrasAbbreviateString) =====
 +Since module version **3.2.0**
 +
 +Script called **extrasAbbreviateString** abbreviate given string by default with maximum length 255. Maximum length can be defined by adding parameter **maximum**. For example:
 +  * .addParameter('maximum', 60)
 +
 +Result examples:
 +  * "Hi how are you" - maximum: 9 - "Hi how"
 +  * "Ing. Mgr. at Mgr. MBA" - maximum: 20 - "Ing. Mgr. at Mgr."
 +  * "Ing." - maximum: 20 - "Ing."
 +
  
  • by apeterova