mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 11:00:03 -03:30
22 lines
731 B
Python
22 lines
731 B
Python
# Copyright (c) 2017 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
from django.conf.urls import url
|
|
|
|
from awx.api.views import (
|
|
NotificationTemplateList,
|
|
NotificationTemplateDetail,
|
|
NotificationTemplateTest,
|
|
NotificationTemplateNotificationList,
|
|
)
|
|
|
|
|
|
urls = [
|
|
url(r'^$', NotificationTemplateList.as_view(), name='notification_template_list'),
|
|
url(r'^(?P<pk>[0-9]+)/$', NotificationTemplateDetail.as_view(), name='notification_template_detail'),
|
|
url(r'^(?P<pk>[0-9]+)/test/$', NotificationTemplateTest.as_view(), name='notification_template_test'),
|
|
url(r'^(?P<pk>[0-9]+)/notifications/$', NotificationTemplateNotificationList.as_view(), name='notification_template_notification_list'),
|
|
]
|
|
|
|
__all__ = ['urls']
|