Skip to content

Instantly share code, notes, and snippets.

@hissy
Created April 15, 2019 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hissy/2f2c3b6ddaef26d9a9476d5e38decc38 to your computer and use it in GitHub Desktop.
Save hissy/2f2c3b6ddaef26d9a9476d5e38decc38 to your computer and use it in GitHub Desktop.
An xml file of example Users&Groups for Migration tool #concrete5
<?xml version="1.0" encoding="UTF-8"?>
<concrete5-cif version="1.0">
<groups>
<group name="Administrators" description="" path="/Administrators" package=""/>
<group name="Editors" description="" path="/Editors" package=""/>
<group name="Approvers" description="" path="/Approvers" package=""/>
</groups>
<users>
<user username="editor" email="editor@example.com" language="ja_JP">
<attributes>
<attributekey handle="profile_private_messages_enabled">
<value>1</value>
</attributekey>
<attributekey handle="profile_private_messages_notification_enabled">
<value>1</value>
</attributekey>
</attributes>
<groups>
<group path="/Editors"/>
</groups>
</user>
<user username="approver" email="approver@example.com" language="ja_JP">
<attributes>
<attributekey handle="profile_private_messages_enabled">
<value>1</value>
</attributekey>
<attributekey handle="profile_private_messages_notification_enabled">
<value>1</value>
</attributekey>
</attributes>
<groups>
<group path="/Approvers"/>
</groups>
</user>
</users>
</concrete5-cif>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment