소스 검색

Expanded SecretRole docstring

Jeremy Stretch 10 년 전
부모
커밋
9cd299f009
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      netbox/secrets/models.py

+ 3 - 0
netbox/secrets/models.py

@@ -165,6 +165,9 @@ class SecretRole(models.Model):
     """
     A SecretRole represents an arbitrary functional classification of Secrets. For example, a user might define roles
     such as "Login Credentials" or "SNMP Communities."
+
+    By default, only superusers will have access to decrypt Secrets. To allow other users to decrypt Secrets, grant them
+    access to the appropriate SecretRoles either individually or by group.
     """
     name = models.CharField(max_length=50, unique=True)
     slug = models.SlugField(unique=True)