blob: 0a7c94af9d0144b7fd1b7542a75b57129e3527b5 [file] [log] [blame]
lombardoffb37bca2018-05-03 16:20:04 +02001#
2# Copyright 2017 CNIT - Consorzio Nazionale Interuniversitario per le Telecomunicazioni
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17from django.conf.urls import url, include
18from projecthandler import views
19
20urlpatterns = [
lombardofr99f922f2018-07-17 17:27:36 +020021 url(r'^$', views.open_project, name='open_project'),
lombardoffb37bca2018-05-03 16:20:04 +020022 url(r'^list/', views.user_projects, name='projects_list'),
lombardofr59989d02020-03-18 10:51:01 +010023 url(r'^domains/', views.user_domains, name='domains_list'),
lombardoffb37bca2018-05-03 16:20:04 +020024 url(r'^new/', views.create_new_project, name='new_project'),
lombardofr3218b2b2018-10-29 13:41:08 +010025 url(r'^descriptors/', include('descriptorhandler.urls', namespace='descriptors'), name='descriptor_base'),
lombardofre5a130a2019-07-15 09:17:59 +020026 url(r'^(?P<project_id>[-\w]+)/delete$', views.delete_project, name='delete_project'),
27 url(r'^(?P<project_id>[-\w]+)/switch', views.switch_project, name='switch_project'),
28 url(r'^(?P<project_id>[-\w]+)/edit', views.edit_project, name='edit_project'),
lombardofr3218b2b2018-10-29 13:41:08 +010029
30
31
lombardofr2ad37de2018-07-18 09:47:28 +020032
lombardoffb37bca2018-05-03 16:20:04 +020033
34]