Versions Compared

Key

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

...

Code Block
######################################
## Group types edit view
## Identify marker attributes or single valued string attributes to be viewed or edited on group screen
## "theConfigId" is the config ID of the attribute
######################################
 
# attribute name that should be able to be seen on screen, e.g. a:b:c
# {valueType: "string"}
# groupScreenTypegroupScreen.attribute.theConfigId.attributeName = 
 
# label on the left side of screen for attribute
# {valueType: "string"}
# groupScreenTypegroupScreen.attribute.theConfigId.label = 
 
# description on the right side of screen for attribute
# {valueType: "string"}
# groupScreenTypegroupScreen.attribute.theConfigId.description = 
 
# numeric index of the order of the attribute on the screen
# {valueType: "integer"}
# groupScreenTypegroupScreen.attribute.theConfigId.index =  


Demo (from screenshot above)

...

Code Block
# attribute name that should be able to be seen on screen, e.g. a:b:c
# {valueType: "string"}
groupScreenTypegroupScreen.attribute.azureMarker.attributeName = etc:attribute:myMfaAzure

# label on the left side of screen for attribute
# {valueType: "string"}
groupScreenTypegroupScreen.attribute.azureMarker.label = Azure require MFA:

# description on the right side of screen for attribute
# {valueType: "string"}
groupScreenTypegroupScreen.attribute.azureMarker.description = Check this box to require users in the group to have MFA required in Azure.  This rollout is based on org.  Users should have time to migrate and ensure their clients support MFA and do not get locked out.

# numeric index of the order of the attribute on the screen
# {valueType: "integer"}
groupScreenTypegroupScreen.attribute.azureMarker.index = 1

# attribute name that should be able to be seen on screen, e.g. a:b:c
# {valueType: "string"}
groupScreenTypegroupScreen.attribute.azureDate.attributeName = etc:attribute:myMfaAzureAttributeDate

# label on the left side of screen for attribute
# {valueType: "string"}
groupScreenTypegroupScreen.attribute.azureDate.label = Azure MFA date:

# description on the right side of screen for attribute
# {valueType: "string"}
groupScreenTypegroupScreen.attribute.azureDate.description = yyyy/mm/dd date of when users in this group will be required to use MFA in Azure.  The date format is required.

# numeric index of the order of the attribute on the screen
# {valueType: "integer"}
groupScreenTypegroupScreen.attribute.azureDate.index = 2


Now anyone with proper privileges can view the attributes on the group details screen or edit them in the group edit screen

...