Jeremy Stretch

Results 629 comments of Jeremy Stretch
trafficstars

> The proposed solution is to execute webhook when we assign the tag. That's the goal, but you haven't proposed a workable implementation. Per my comment [here](https://github.com/netbox-community/netbox/pull/9877#issuecomment-1201160251), we can't just...

Ethernet MAC addresses are six-byte values stored as [`macaddr`](https://www.postgresql.org/docs/10/datatype-net-types.html#DATATYPE-MACADDR) fields in the PostgreSQL database. Similarly, Fibre Channel WWN addresses are eight-byte values stored in a `macaddr8`. We won't be making...

@maxiestudies are you still interested in pursuing this?

Closing this out for inactivity.

One thing to consider is [the order in which apps are loaded](https://docs.djangoproject.com/en/4.0/ref/applications/#how-applications-are-loaded). I don't know if it's something we need to address for plugins, but this has come up in...

I'm pointing out that it needs to be considered because there are scenarios where it may be required, such as the example I cited.

Thinking about this further, I can't come up with a scenario where you would need to load another Django app _after_ a plugin which depends on it, so maybe it...

> Add the ability to filter interfaces under /dcim/interfaces/ by those that have / have not got a cable connected This is already provided by the `cabled` boolean filter on...

We currently have two relevent filters in place: * `cabled` - Boolean filter returning only models which have a cable assigned * `connected` - Boolean filter for path endpoints which...

> 1. Extend the `cabled` filter to include objects with `mark_connected` set to True This makes the most sense IMO, but this is still open to debate.