mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 16:21:51 +00:00
18 lines
381 B
Python
18 lines
381 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
URLs for entitlement requests app
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from .views import IndexView, RevokeConsents
|
|
|
|
urlpatterns = [
|
|
re_path(r'^$',
|
|
IndexView.as_view(),
|
|
name='consents-index'),
|
|
re_path(r'^consents/consent_id/(?P<consent_id>[\w\@\.\+-]+)$',
|
|
RevokeConsents.as_view(),
|
|
name='consent-revoke'),
|
|
]
|