mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
Expanded SecretRole docstring
This commit is contained in:
parent
f17938f156
commit
9cd299f009
@ -165,6 +165,9 @@ class SecretRole(models.Model):
|
|||||||
"""
|
"""
|
||||||
A SecretRole represents an arbitrary functional classification of Secrets. For example, a user might define roles
|
A SecretRole represents an arbitrary functional classification of Secrets. For example, a user might define roles
|
||||||
such as "Login Credentials" or "SNMP Communities."
|
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)
|
name = models.CharField(max_length=50, unique=True)
|
||||||
slug = models.SlugField(unique=True)
|
slug = models.SlugField(unique=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user