mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 10:59:00 +00:00
19 lines
486 B
Python
19 lines
486 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
URLs for config app
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from dynamicendpoints.views import IndexView, dynamicendpoints_save,dynamicendpoints_delete
|
|
|
|
urlpatterns = [
|
|
re_path(r'^$',
|
|
IndexView.as_view(),
|
|
name='dynamicendpoints-index'),
|
|
re_path(r'save/dynamicendpoint', dynamicendpoints_save,
|
|
name='dynamicendpoint-save'),
|
|
re_path(r'delete/dynamicendpoint', dynamicendpoints_delete,
|
|
name='dynamicendpoint-delete')
|
|
]
|