Created
August 9, 2020 09:51
-
-
Save hissy/54dc267ed0e5f3017f9e11dc7cacb1f5 to your computer and use it in GitHub Desktop.
[concrete5] Example users & groups
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.