mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
. Invite Users screens for Manage Content Users and Manage Space Users now support email templates
. Added additional template model objects to the model supported by the MailActionExecutor . Refactored various beans in the web-client that build lists of templates, to use a new Template support bean . Added new email template files (one for Invite Users, the other for Email Actions) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2537 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -58,7 +58,7 @@ public class DefaultModelHelper
|
||||
*
|
||||
* @return Map containing the default model.
|
||||
*/
|
||||
public static Map buildDefaultModel(ServiceRegistry services, User user)
|
||||
public static Map<String, Object> buildDefaultModel(ServiceRegistry services, User user)
|
||||
{
|
||||
if (services == null)
|
||||
{
|
||||
@@ -70,7 +70,7 @@ public class DefaultModelHelper
|
||||
}
|
||||
|
||||
// create FreeMarker default model and merge
|
||||
Map root = new HashMap(16, 1.0f);
|
||||
Map<String, Object> root = new HashMap<String, Object>(16, 1.0f);
|
||||
|
||||
// supply the CompanyHome space as "companyhome"
|
||||
NodeRef companyRootRef = new NodeRef(Repository.getStoreRef(), Application.getCompanyRootId());
|
||||
|
Reference in New Issue
Block a user