mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
* minor changes
This commit is contained in:
@@ -261,7 +261,8 @@ public class InvitationServiceImpl implements InvitationService, NodeServicePoli
|
||||
PropertyCheck.mandatory(this, "PasswordGenerator", passwordGenerator);
|
||||
PropertyCheck.mandatory(this, "PolicyComponent", policyComponent);
|
||||
PropertyCheck.mandatory(this, "templateService", templateService);
|
||||
|
||||
PropertyCheck.mandatory(this, "clientAppConfig", clientAppConfig);
|
||||
|
||||
this.inviteNominatedSender = new InviteNominatedSender(serviceRegistry, repositoryHelper, messageService);
|
||||
this.inviteModeratedSender = new InviteModeratedSender(serviceRegistry, repositoryHelper, messageService);
|
||||
|
||||
|
@@ -77,8 +77,10 @@ import org.alfresco.service.namespace.QName;
|
||||
parentProps.put(RESOURCE_NAME_KEY,(String)props.get(WF_PROP_RESOURCE_NAME));
|
||||
parentProps.put(RESOURCE_TYPE_KEY,(String)props.get(WF_PROP_RESOURCE_TYPE));
|
||||
parentProps.put(CREATED_AT,(Date)props.get(ContentModel.PROP_CREATED));
|
||||
parentProps.put(MODIFIED_AT,(Date)props.get(WF_PROP_MODIFIED_AT));
|
||||
parentProps.put(CLIENT_NAME,(Date)props.get(WF_PROP_CLIENT_NAME));
|
||||
Object modifiedAt = props.get(WF_PROP_MODIFIED_AT);
|
||||
parentProps.put(MODIFIED_AT, modifiedAt != null ? (Date) modifiedAt : null);
|
||||
Object clientName = props.get(WF_PROP_CLIENT_NAME);
|
||||
parentProps.put(CLIENT_NAME, clientName != null ? (String) clientName : null);
|
||||
return parentProps;
|
||||
}
|
||||
|
||||
|
@@ -39,10 +39,10 @@
|
||||
<import resource="classpath*:alfresco/domain/*-context.xml" />
|
||||
<import resource="classpath*:alfresco/smartfolder-context.xml" />
|
||||
<import resource="classpath*:alfresco/reset-password-context.xml" />
|
||||
<import resource="classpath:alfresco/invitation-service-context.xml"/>
|
||||
<import resource="classpath:alfresco/heartbeat/heartbeat-repo-collector-context.xml"/>
|
||||
<import resource="classpath*:alfresco/enterprise/heartbeat/heartbeat-enterprise-repo-collector-context.xml" />
|
||||
<import resource="classpath*:alfresco/deprecated-model-bootstrap-context.xml" />
|
||||
<import resource="classpath*:alfresco/events-context.xml" />
|
||||
<import resource="classpath*:alfresco/messaging-context.xml" />
|
||||
<import resource="classpath:alfresco/invitation-service-context.xml"/>
|
||||
</beans>
|
||||
|
@@ -17,4 +17,10 @@ repo.client-app.share.requestResetPasswordTemplatePath=
|
||||
# reset password UI page url
|
||||
repo.client-app.share.resetPasswordPageUrl=${shareUrl}/page/reset-password
|
||||
# reset password confirmation email template path
|
||||
repo.client-app.share.confirmResetPasswordTemplatePath=
|
||||
repo.client-app.share.confirmResetPasswordTemplatePath=
|
||||
|
||||
### Digital workspace template configurations
|
||||
repo.client-app.workspace.inviteModeratedTemplatePath=
|
||||
repo.client-app.workspace.sharedLinkBaseUrl=
|
||||
repo.client-app.workspace.workspaceUrl=workspace
|
||||
repo.client-app.workspace.templateAssetsUrl=${alfrescoUrl}/images
|
||||
|
@@ -33,6 +33,7 @@
|
||||
<property name="serviceRegistry" ref="ServiceRegistry"/>
|
||||
<property name="repositoryHelper" ref="repositoryHelper"/>
|
||||
<property name="messageService" ref="messageService"/>
|
||||
<property name="clientAppConfig" ref="clientAppConfig"/>
|
||||
</bean>
|
||||
|
||||
<!-- Site service security bean -->
|
||||
|
Reference in New Issue
Block a user