HostMetric review,migration,permissions

This commit is contained in:
Martin Slemr
2023-02-15 16:49:43 +01:00
committed by John Westcott IV
parent f919178734
commit e6050804f9
8 changed files with 24 additions and 76 deletions

View File

@@ -5,6 +5,6 @@ from django.urls import re_path
from awx.api.views import HostMetricList, HostMetricDetail
urls = [re_path(r'$^', HostMetricList.as_view(), name='host_metric_list'), re_path(r'^(?P<pk>[0-9]+)/$', HostMetricDetail.as_view(), name='host_metric_detail')]
urls = [re_path(r'^$', HostMetricList.as_view(), name='host_metric_list'), re_path(r'^(?P<pk>[0-9]+)/$', HostMetricDetail.as_view(), name='host_metric_detail')]
__all__ = ['urls']