This is a feature in v2.6.8+ that allows select attributes to be editable in group edit screen (similar to the legacy Grouper "admin ui")

This was requested by Brown as they upgrade their legacy UI and keep a similar experience for users.

This also allows the attributes to be viewable on the group screen under "details"

When do use this

Demo


Applicable attributes

Security

This uses stock group/attributeDef security

Configure

 grouper.properties

######################################
## 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"}
# groupScreenType.theConfigId.attributeName = 
 
# label on the left side of screen for attribute
# {valueType: "string"}
# groupScreenType.theConfigId.label = 
 
# description on the right side of screen for attribute
# {valueType: "string"}
# groupScreenType.theConfigId.description = 
 
# numeric index of the order of the attribute on the screen
# {valueType: "integer"}
# groupScreenType.theConfigId.index =  


Example (from screenshot above)

Make an attribute definition for the marker

Make a name for that



Make an attribute with a value



Make a name for the value def



Configure those up in grouper.properties


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

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

# description on the right side of screen for attribute
# {valueType: "string"}
groupScreenType.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"}
groupScreenType.azureMarker.index = 1

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

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

# description on the right side of screen for attribute
# {valueType: "string"}
groupScreenType.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"}
groupScreenType.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