Skip to content

Instantly share code, notes, and snippets.

@hissy
Created August 9, 2020 09:51
Show Gist options
  • Save hissy/54dc267ed0e5f3017f9e11dc7cacb1f5 to your computer and use it in GitHub Desktop.
Save hissy/54dc267ed0e5f3017f9e11dc7cacb1f5 to your computer and use it in GitHub Desktop.
[concrete5] Example users & groups
<?xml version="1.0" encoding="UTF-8"?>
<concrete5-cif version="1.0">
<users>
<user username="editor" email="[email protected]">
<groups>
<group path="/Editor"/>
</groups>
</user>
<user username="approver_a" email="[email protected]">
<groups>
<group path="/Approver"/>
</groups>
</user>
<user username="approver_b" email="[email protected]">
<groups>
<group path="/Approver"/>
</groups>
</user>
</users>
<groups>
<group name="Approver" description="" path="/Approver" package=""/>
<group name="Editor" description="" path="/Editor" package=""/>
</groups>
</concrete5-cif>
@1stthomas
Copy link

To create users with the shown properties doesn't work with 9.1.1 anymore (from a package). User groups does work. But even if I remove the group definitions of the user it doesn't work. Also adding the package doesn't succeed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment