[Permissions] Quick extra comment of importance (#2379)

This commit is contained in:
Michael H 2019-01-17 22:48:00 -05:00 committed by Toby Harradine
parent 849ade6e58
commit 1c4193cce2

View File

@ -93,6 +93,10 @@ DM_PERMS.update(
class PrivilegeLevel(enum.IntEnum): class PrivilegeLevel(enum.IntEnum):
"""Enumeration for special privileges.""" """Enumeration for special privileges."""
# Maintainer Note: do NOT re-order these.
# Each privelege level also implies access to the ones before it.
# Inserting new privelege levels at a later point is fine if that is considered.
NONE = enum.auto() NONE = enum.auto()
"""No special privilege level.""" """No special privilege level."""