Allow case insensitive role matching for cert permissions

This commit is contained in:
Curtis Castrapel 2018-08-20 08:55:04 -07:00
parent 075b18e5db
commit 6abf274680
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,9 @@ 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)