Skip to content
Snippets Groups Projects
Commit 58c94519 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch '858-fix-metrics-url-django' into 'master'

Resolve "Fix metrics URL (/django/)"

Closes #858

See merge request !1246
parents 9f362d9f 7c5cefcd
No related branches found
No related tags found
1 merge request!1246Resolve "Fix metrics URL (/django/)"
Pipeline #129205 failed
......@@ -11,6 +11,7 @@ Unreleased
Changes
~~~~~~~
* The frontend is now able to display headings in the main toolbar.
Fixed
......@@ -20,6 +21,7 @@ Fixed
* In some cases, some items in the sidenav menu were not shown due to its height being higher than the visible page area.
* The search bar in the sidenav menu is shown even though the user has no permission to see it.
* Add permission check to accept invitation menu point in order to hide it when this feature is disabled.
* Metrics endpoint for Prometheus was at the wrong URL.
`3.0`_ - 2022-05-11
-------------------
......
......@@ -42,11 +42,11 @@ urlpatterns = [
),
path("oauth/", include("oauth2_provider.urls", namespace="oauth2_provider")),
path("system_status/", views.SystemStatusAPIView.as_view(), name="system_status_api"),
path("", include("django_prometheus.urls")),
path(
"django/",
include(
[
path("", include("django_prometheus.urls")),
path("account/login/", views.LoginView.as_view(), name="login"),
path(
"accounts/signup/", views.AccountRegisterView.as_view(), name="account_signup"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment