Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion netbox/ipam/models/asns.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from ipam.fields import ASNField
from ipam.querysets import ASNRangeQuerySet
from netbox.models import OrganizationalModel, PrimaryModel
from netbox.models.features import ContactsMixin

__all__ = (
'ASN',
Expand Down Expand Up @@ -88,7 +89,7 @@ def get_available_asns(self):
return available_asns


class ASN(PrimaryModel):
class ASN(ContactsMixin, PrimaryModel):
"""
An autonomous system (AS) number is typically used to represent an independent routing domain. A site can have
one or more ASNs assigned to it.
Expand Down