From 9cd299f009c2dd0e37c6b7b399aa8305782c69f1 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 21 Jun 2016 15:30:43 -0400 Subject: [PATCH] Expanded SecretRole docstring --- netbox/secrets/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/netbox/secrets/models.py b/netbox/secrets/models.py index a69733517..3dacc3be1 100644 --- a/netbox/secrets/models.py +++ b/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)