Kani999 / netbox-attachments

Plugin to manage attachments for any model
Apache License 2.0
56 stars 4 forks source link

fix api to work with pynetbox #13

Closed oasys closed 1 year ago

oasys commented 1 year ago

pynetbox changes _ in method calls to - in the API URI, causing this error:

>>> nb.plugins.netbox_attachments.netbox_attachments.count())
...
pynetbox.core.query.RequestError: The requested url: http://localhost:8000/api/plugins/netbox-attachments/netbox-attachments/?limit=1 could not be found.

With this change, the affected pynetbox call works:

>>> nb.plugins.netbox_attachments.netbox_attachments.count()
3