Complete consolidation of the label views

This commit is contained in:
Alan Rominger
2022-09-15 11:00:20 -04:00
parent a528a78e0e
commit ef90adb67e
6 changed files with 80 additions and 100 deletions

View File

@@ -3,7 +3,7 @@
from django.urls import re_path
from awx.api.views import LabelList, LabelDetail
from awx.api.views.labels import LabelList, LabelDetail
urls = [re_path(r'^$', LabelList.as_view(), name='label_list'), re_path(r'^(?P<pk>[0-9]+)/$', LabelDetail.as_view(), name='label_detail')]