Sunil Mohan Adapa 9368504da5
*.py: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:38:55 +02:00

24 lines
591 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
URLs for the Gitweb module.
"""
from django.conf.urls import url
from .views import CreateRepoView, EditRepoView, GitwebAppView, delete
urlpatterns = [
url(r'^apps/gitweb/$', GitwebAppView.as_view(), name='index'),
url(r'^apps/gitweb/create/$', CreateRepoView.as_view(), name='create'),
url(
r'^apps/gitweb/(?P<name>[a-zA-Z0-9-._]+)/edit/$',
EditRepoView.as_view(),
name='edit',
),
url(
r'^apps/gitweb/(?P<name>[a-zA-Z0-9-._]+)/delete/$',
delete,
name='delete',
),
]