1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

implement 3664

This commit is contained in:
kobayashi
2019-12-11 04:48:50 -05:00
parent 0d8fd45587
commit 5710f297f1
10 changed files with 77 additions and 3 deletions

View File

@@ -673,6 +673,11 @@ class ConfigContext(models.Model):
related_name='+',
blank=True
)
tags = models.ManyToManyField(
to='extras.Tag',
related_name='+',
blank=True
)
data = JSONField()
objects = ConfigContextQuerySet.as_manager()