mirror of
https://github.com/ansible/awx.git
synced 2026-02-20 04:30:05 -03:30
11 lines
263 B
Python
11 lines
263 B
Python
# Copyright (c) 2017 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
from django.urls import re_path
|
|
|
|
from awx.api.views import JobHostSummaryDetail
|
|
|
|
urls = [re_path(r'^(?P<pk>[0-9]+)/$', JobHostSummaryDetail.as_view(), name='job_host_summary_detail')]
|
|
|
|
__all__ = ['urls']
|