mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
. Fix to Guest user bootstrap to allow all non-admin users READ access to the Guest user Person
- this allows users to Invite the Guest user into a Space - requried for the RSS Feed to work . Created a Patch for above change for existing systems git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3582 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
</cm:person>
|
||||
<!-- Guest needs to read their own person information -->
|
||||
<cm:person view:childName="cm:person">
|
||||
<view:acl view:inherit="false">
|
||||
<view:acl>
|
||||
<view:ace view:access="ALLOWED">
|
||||
<view:authority>guest</view:authority>
|
||||
<view:permission>Read</view:permission>
|
||||
|
@@ -85,3 +85,6 @@ patch.rssTemplatesFolder.result.created=The RSS Templates folder was successfull
|
||||
|
||||
patch.uifacetsAspectRemovalPatch.description=Removes the incorrectly applied uifacets aspect from presentation template files.
|
||||
patch.uifacetsAspectRemovalPatch.updated=Successfully removed the uifacets aspect from {0} presentation template files.
|
||||
|
||||
patch.guestPersonPermission2.description=Change Guest Person permission to visible by all users as 'Consumer'.
|
||||
patch.guestPersonPermission2.result=Updated Guest Person permission to visible by all users as 'Consumer'.
|
||||
|
@@ -425,4 +425,19 @@
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="patch.guestPersonPermission2" class="org.alfresco.repo.admin.patch.impl.GuestPersonPermissionPatch2" parent="basePatch" >
|
||||
<property name="id"><value>patch.guestPersonPermission2</value></property>
|
||||
<property name="description"><value>patch.guestPersonPermission2.description</value></property>
|
||||
<property name="fixesFromSchema"><value>0</value></property>
|
||||
<property name="fixesToSchema"><value>18</value></property>
|
||||
<property name="targetSchema"><value>19</value></property>
|
||||
<!-- helper beans for execution -->
|
||||
<property name="permissionService">
|
||||
<ref bean="permissionService"/>
|
||||
</property>
|
||||
<property name="personService">
|
||||
<ref bean="personService"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
|
@@ -19,4 +19,4 @@ version.build=@build-number@
|
||||
|
||||
# Schema number
|
||||
|
||||
version.schema=18
|
||||
version.schema=19
|
||||
|
Reference in New Issue
Block a user