ALF-3709: User Status on Profile. Added cm:userStatus text property to cm:person and exposed the current value via the GET userprofile webscript. The property can be updated with the existing webscripts as a generic map of person properties is accepted.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21316 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2010-07-20 21:23:12 +00:00
parent 9bec2b070b
commit b8dbc57437

View File

@@ -23,6 +23,7 @@
"companyemail": <#if person.properties.companyemail??>"${person.properties.companyemail}"<#else>null</#if>,
"skype": <#if person.properties.skype??>"${person.properties.skype}"<#else>null</#if>,
"instantmsg": <#if person.properties.instantmsg??>"${person.properties.instantmsg}"<#else>null</#if>,
"userStatus": <#if person.properties.userStatus??>"${person.properties.userStatus}"<#else>null</#if>,
"googleusername": <#if person.properties.googleusername??>"${person.properties.googleusername}"<#else>null</#if>,
"quota": <#if person.properties.sizeQuota??>${person.properties.sizeQuota?c}<#else>-1</#if>,
"sizeCurrent": <#if person.properties.sizeCurrent??>${person.properties.sizeCurrent?c}<#else>0</#if>,