Skip to content

Commit fc623d0

Browse files
committed
some more adjustements
1 parent 1faebbf commit fc623d0

2 files changed

Lines changed: 24 additions & 5 deletions

File tree

docs/installation/netbox_compatibility.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In the table below you can find appropriate Validity version according to your N
2626
<table class="tg"><thead>
2727
<tr>
2828
<th class="tg-r82u" colspan="2" rowspan="2"></th>
29-
<th class="tg-c6ba" colspan="9">NetBox<br></th>
29+
<th class="tg-c6ba" colspan="10">NetBox<br></th>
3030
</tr>
3131
<tr>
3232
<th class="tg-5gjp">v3.4</th>
@@ -38,10 +38,11 @@ In the table below you can find appropriate Validity version according to your N
3838
<th class="tg-5gjp">v4.2</th>
3939
<th class="tg-5gjp">v4.3</th>
4040
<th class="tg-5gjp">v4.4</th>
41+
<th class="tg-5gjp">v4.5</th>
4142
</tr></thead>
4243
<tbody>
4344
<tr>
44-
<td class="tg-5iin" rowspan="7">Validity<br><br></td>
45+
<td class="tg-5iin" rowspan="8">Validity<br><br></td>
4546
<td class="tg-c6ba">v1.4</td>
4647
<td class="tg-8g55">✅</td>
4748
<td class="tg-8g55">✅</td>
@@ -52,6 +53,7 @@ In the table below you can find appropriate Validity version according to your N
5253
<td class="tg-8g55"></td>
5354
<td class="tg-8g55"></td>
5455
<td class="tg-8g55"></td>
56+
<td class="tg-8g55"></td>
5557
</tr>
5658
<tr>
5759
<td class="tg-c6ba">v2.2</td>
@@ -64,6 +66,7 @@ In the table below you can find appropriate Validity version according to your N
6466
<td class="tg-8g55"></td>
6567
<td class="tg-8g55"></td>
6668
<td class="tg-8g55"></td>
69+
<td class="tg-8g55"></td>
6770
</tr>
6871
<tr>
6972
<td class="tg-c6ba">v2.3</td>
@@ -76,6 +79,7 @@ In the table below you can find appropriate Validity version according to your N
7679
<td class="tg-8g55"></td>
7780
<td class="tg-8g55"></td>
7881
<td class="tg-8g55"></td>
82+
<td class="tg-8g55"></td>
7983
</tr>
8084
<tr>
8185
<td class="tg-c6ba">v3.0</td>
@@ -88,6 +92,7 @@ In the table below you can find appropriate Validity version according to your N
8892
<td class="tg-8g55"></td>
8993
<td class="tg-8g55"></td>
9094
<td class="tg-8g55"></td>
95+
<td class="tg-8g55"></td>
9196
</tr>
9297
<tr>
9398
<td class="tg-c6ba">v3.1</td>
@@ -100,6 +105,7 @@ In the table below you can find appropriate Validity version according to your N
100105
<td class="tg-8g55">✅</td>
101106
<td class="tg-8g55"></td>
102107
<td class="tg-8g55"></td>
108+
<td class="tg-8g55"></td>
103109
</tr>
104110
<tr>
105111
<td class="tg-c6ba">v3.2</td>
@@ -112,6 +118,7 @@ In the table below you can find appropriate Validity version according to your N
112118
<td class="tg-8g55">✅</td>
113119
<td class="tg-8g55">✅</td>
114120
<td class="tg-8g55"></td>
121+
<td class="tg-8g55"></td>
115122
</tr>
116123
<tr>
117124
<td class="tg-c6ba">v3.3</td>
@@ -124,5 +131,19 @@ In the table below you can find appropriate Validity version according to your N
124131
<td class="tg-8g55">✅</td>
125132
<td class="tg-8g55">✅</td>
126133
<td class="tg-8g55">✅</td>
134+
<td class="tg-8g55"></td>
135+
</tr>
136+
<tr>
137+
<td class="tg-c6ba">v3.4</td>
138+
<td class="tg-8g55"></td>
139+
<td class="tg-8g55"></td>
140+
<td class="tg-8g55"></td>
141+
<td class="tg-8g55"></td>
142+
<td class="tg-8g55"></td>
143+
<td class="tg-8g55"></td>
144+
<td class="tg-8g55"></td>
145+
<td class="tg-8g55">✅</td>
146+
<td class="tg-8g55">✅</td>
147+
<td class="tg-8g55">✅</td>
127148
</tr>
128149
</tbody></table>

validity/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@ class NetBoxValidityConfig(PluginConfig):
2121
django_apps = ["django_bootstrap5"]
2222
min_version = "4.3.0"
2323
max_version = "4.5.99"
24+
graphql_schema = "graphql.schema"
2425

2526
# custom field
2627
netbox_version = NetboxVersion(VERSION)
2728

28-
if netbox_version >= "4.3.0":
29-
graphql_schema = "graphql.schema"
30-
3129
def _setup_queues(self):
3230
django_settings = di["django_settings"]
3331
for _, queue_name in di["validity_settings"].custom_queues:

0 commit comments

Comments
 (0)