mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
35626: Patch and Bootstrap files for the new System Containers for Remote Credentials and SyncSets 35628: Model for Remote Credentials git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@35633 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
36 lines
1.6 KiB
XML
36 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<view:view xmlns:view="http://www.alfresco.org/view/repository/1.0"
|
|
xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0"
|
|
xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns="">
|
|
|
|
<sys:container view:childName="${system.remote_credentials_container.childname}">
|
|
<view:properties>
|
|
<sys:store-protocol>workspace</sys:store-protocol>
|
|
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
|
<sys:node-uuid>remote_credentials_container</sys:node-uuid>
|
|
<cm:name>${spaces.remote_credentials.root.name}</cm:name>
|
|
<cm:title>${spaces.remote_credentials.root.name}</cm:title>
|
|
<cm:description>${spaces.remote_credentials.root.description}</cm:description>
|
|
</view:properties>
|
|
|
|
<!-- By default, anyone can add children (new credentials), and read existing ones, -->
|
|
<!-- but not edit or delete other's credentials -->
|
|
<view:acl view:inherit="false">
|
|
<view:ace view:access="ALLOWED">
|
|
<view:authority>GROUP_EVERYONE</view:authority>
|
|
<view:permission>Read</view:permission>
|
|
</view:ace>
|
|
<view:ace view:access="ALLOWED">
|
|
<view:authority>GROUP_EVERYONE</view:authority>
|
|
<view:permission>AddChildren</view:permission>
|
|
</view:ace>
|
|
<view:ace view:access="ALLOWED">
|
|
<view:authority>ROLE_OWNER</view:authority>
|
|
<view:permission>FullControl</view:permission>
|
|
</view:ace>
|
|
</view:acl>
|
|
</sys:container>
|
|
|
|
</view:view>
|
|
|