Skip to content

Commit 840ea36

Browse files
Merge pull request #7103 from candlerb/candlerb/7102
Redirect users on error to the GitHub discussion forum
2 parents a8cdb38 + 349733c commit 840ea36

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

netbox/templates/500.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h5 class="card-header">
3232
Python version: {{ python_version }}
3333
NetBox version: {{ netbox_version }}</pre>
3434
<p>
35-
If further assistance is required, please post to the <a href="https://groups.google.com/g/netbox-discuss">NetBox mailing list</a>.
35+
If further assistance is required, please post to the <a href="https://github.com/netbox-community/netbox/discussions">NetBox discussion forum</a> on GitHub.
3636
</p>
3737
<div class="text-end">
3838
<a href="{% url 'home' %}" class="btn btn-primary">Home Page</a>

netbox/utilities/management/commands/makemigrations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def handle(self, *args, **kwargs):
2121
raise CommandError(
2222
"This command is available for development purposes only. It will\n"
2323
"NOT resolve any issues with missing or unapplied migrations. For assistance,\n"
24-
"please post to the NetBox mailing list:\n"
25-
" https://groups.google.com/g/netbox-discuss"
24+
"please post to the NetBox discussion forum on GitHub:\n"
25+
" https://github.com/netbox-community/netbox/discussions"
2626
)
2727

2828
super().handle(*args, **kwargs)

0 commit comments

Comments
 (0)