API-Manager/apimanager/methodrouting/urls.py

19 lines
448 B
Python
Raw Permalink Normal View History

2019-08-11 09:38:18 +00:00
# -*- coding: utf-8 -*-
"""
URLs for config app
"""
2024-10-31 11:56:29 +00:00
from django.urls import re_path
2019-08-11 09:38:18 +00:00
2019-08-29 12:24:37 +00:00
from methodrouting.views import IndexView, methodrouting_save, methodrouting_delete
2019-08-11 09:38:18 +00:00
urlpatterns = [
2024-10-31 11:56:29 +00:00
re_path(r'^$',
2019-08-11 09:38:18 +00:00
IndexView.as_view(),
name='methodrouting-index'),
2024-10-31 11:56:29 +00:00
re_path(r'save/method', methodrouting_save,
2019-08-14 13:29:29 +00:00
name='methodrouting-save'),
2024-10-31 11:56:29 +00:00
re_path(r'delete/method', methodrouting_delete,
2019-08-18 14:41:31 +00:00
name='methodrouting-delete'),
2019-08-11 09:38:18 +00:00
]