Enabling the tagging of other people
Configure the profiles-config.xml file to enable users to tag each other with relevant key words.
Before you begin
About this task
Procedure
To enable users to tag other users, 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 tagOthers property Property Description tagOthers.enabled Specifies whether users can tag other people. This property takes a Boolean value, true or false. The value must be formatted in lowercase.
For example, to prevent users from tagging others:ProfilesConfigService.updateConfig("tagOthers.enabled", "false")
Note: Users can still tag themselves when the tagOthers property is disabled. - 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.