From b8dbc57437b971b1e831667be656e6a8af208e23 Mon Sep 17 00:00:00 2001 From: Gavin Cornwell Date: Tue, 20 Jul 2010 21:23:12 +0000 Subject: [PATCH] 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 --- .../webscripts/org/alfresco/repository/person/person.lib.ftl | 1 + 1 file changed, 1 insertion(+) diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/person/person.lib.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/person/person.lib.ftl index e38fdc00ab..4fc413b7bb 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/person/person.lib.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/person/person.lib.ftl @@ -23,6 +23,7 @@ "companyemail": <#if person.properties.companyemail??>"${person.properties.companyemail}"<#else>null, "skype": <#if person.properties.skype??>"${person.properties.skype}"<#else>null, "instantmsg": <#if person.properties.instantmsg??>"${person.properties.instantmsg}"<#else>null, + "userStatus": <#if person.properties.userStatus??>"${person.properties.userStatus}"<#else>null, "googleusername": <#if person.properties.googleusername??>"${person.properties.googleusername}"<#else>null, "quota": <#if person.properties.sizeQuota??>${person.properties.sizeQuota?c}<#else>-1, "sizeCurrent": <#if person.properties.sizeCurrent??>${person.properties.sizeCurrent?c}<#else>0,