Enabling status updates
Configure the profiles-config.xml file to enable users to update their status from their profile.
Before you begin
About this task
Procedure
To enable
status updates on the My Profile page,
complete the following steps.
- Use the wsadmin
client to access and check out the Profiles
configuration files.
- Use the following
command to configure settings for the
status update feature:
ProfilesConfigService.updateConfig(property, value)
where:- property is one of the editable Profiles configuration properties.
- value is the new value with which you want to set that property.
Table 1. The board configuration properties Property Description statusUpdatesInProfileView.enabled Specifies whether users can update their status from the My Profile page. This property takes a Boolean value, true or false. The value must be formatted in lowercase.
For example, to prevent users from entering their status on the My Profile page:ProfilesConfigService.updateConfig("statusUpdatesInProfileView.enabled", "false")
- After making changes, you must check the configuration files back in, and you must do so during the same wsadmin session in which you checked them out for the changes to take effect. See Applying property changes for information about how to save and apply your changes.