-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Netbox Inventory Custom Field #189
Comments
It seems to happen on any netbox 4.0.x version on a fresh install and for now it seems to be an issue related to netbox-attachments plugin or the order in which the plugins are specified in netbox config. All plugins listed after netbox_attachments have their models missing. So for example with this config: PLUGINS = [
'netbox_attachments',
'netbox_inventory',
'netbox_dns',
] I cannot select any object types from netbox_inventory or netbox_dns when creating custom field. If I move netbox_attachments to last place: PLUGINS = [
'netbox_inventory',
'netbox_dns',
'netbox_attachments',
] Then I can select object types from all three plugins. I'm not sure what is going on. Looking at netbox_inventory and netbox_attachments code, I don't see any obvious reason for this issue. This issue might take a while to resolve. For now I suggest you try to move |
Thank you so much. That did the trick. Maybe we should contact the developer of the attachments plugin. |
Since a new fresh installation of Netbox (Version 4.0.9) Netbox Inventory is not available at "Object types" and "Related object type" when i want Create a Custom Field. Other Plugins like Netbox Attachments are available.
The text was updated successfully, but these errors were encountered: