forked from Github-Mirrors/canaille
9 lines
258 B
Python
9 lines
258 B
Python
def test_group_permissions_by_dn(testclient, user, foo_group):
|
|
assert not user.can_manage_users
|
|
|
|
testclient.app.config["CANAILLE"]["ACL"]["ADMIN"]["FILTER"] = {
|
|
"groups": foo_group.dn
|
|
}
|
|
user.reload()
|
|
|
|
assert user.can_manage_users
|