Revert "Merge pull request #1589 from castrapel/issue_1570_ignorecasev2"
This reverts commita21b71a0e2
, reversing changes made to075b18e5db
.
This commit is contained in:
parent
a21b71a0e2
commit
bc88d3514c
|
@ -29,9 +29,6 @@ class CertificatePermission(Permission):
|
|||
needs = [RoleNeed('admin'), RoleNeed(owner), RoleNeed('creator')]
|
||||
for r in roles:
|
||||
needs.append(CertificateOwnerNeed(str(r)))
|
||||
# Backwards compatibility with mixed-case role names
|
||||
if str(r) != str(r).lower():
|
||||
needs.append(CertificateOwnerNeed(str(r).lower()))
|
||||
|
||||
super(CertificatePermission, self).__init__(*needs)
|
||||
|
||||
|
|
Loading…
Reference in New Issue