mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 13:46:45 +00:00
17 lines
365 B
Python
17 lines
365 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
URLs for Api Collection list app
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
from .views import ApiCollectionListView, ExportCsvView
|
|
|
|
urlpatterns = [
|
|
url(r'^$',
|
|
ApiCollectionListView.as_view(),
|
|
name='apicollection-list'),
|
|
url(r'^export_csv$',
|
|
ExportCsvView.as_view(),
|
|
name='export-csv-apicollection')
|
|
]
|