feat: integriertes Dokumentations-Wiki für NetBox hinzufügen
- Markdown-Dokumentationen direkt in NetBox erstellen - Dokumente Standorten, Racks, Geräten, VMs und Clustern zuordnen - DOCX-, XLSX-, PDF-, Markdown- und Textimporte unterstützen - REST-API, Suche, Berechtigungen und Änderungsprotokoll ergänzen - Installation, Konfiguration und Importgrenzen dokumentieren
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
from netbox.plugins import PluginConfig
|
||||
|
||||
|
||||
class DocumentationConfig(PluginConfig):
|
||||
name = "netbox_documentation"
|
||||
verbose_name = "Dokumentation"
|
||||
description = "Wiki und Office-Dokumentation direkt in NetBox"
|
||||
version = "0.1.0"
|
||||
author = "NetBox Documentation Contributors"
|
||||
base_url = "documentation"
|
||||
min_version = "4.0.0"
|
||||
default_settings = {
|
||||
"allowed_object_types": [
|
||||
"dcim.region", "dcim.site", "dcim.location", "dcim.rack",
|
||||
"dcim.device", "virtualization.virtualmachine",
|
||||
"virtualization.cluster", "tenancy.tenant",
|
||||
],
|
||||
"max_import_size_mb": 25,
|
||||
"keep_imported_file": True,
|
||||
}
|
||||
|
||||
|
||||
config = DocumentationConfig
|
||||
|
||||
Reference in New Issue
Block a user