mirror of
https://github.com/ansible/awx.git
synced 2026-01-23 07:28:02 -03:30
14 lines
281 B
Python
14 lines
281 B
Python
# Copyright (c) 2017 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
from django.urls import re_path
|
|
|
|
from awx.api.views import AdHocCommandEventDetail
|
|
|
|
|
|
urls = [
|
|
re_path(r'^(?P<pk>[0-9]+)/$', AdHocCommandEventDetail.as_view(), name='ad_hoc_command_event_detail'),
|
|
]
|
|
|
|
__all__ = ['urls']
|