
As per Django 4 release notes: https://docs.djangoproject.com/en/4.0/releases/4.0/ django.conf.urls.url is removed, and django.urls.re_path should be used instead. Change-Id: I01dbd7b4931f3fb13b0a77ced740113227cfcaef
55 lines
2.4 KiB
Python
55 lines
2.4 KiB
Python
# Copyright 2013 Rackspace Hosting
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from django.conf.urls import include
|
|
from django.urls import re_path
|
|
|
|
from trove_dashboard.content.databases.logs import urls as logs_urls
|
|
from trove_dashboard.content.databases import views
|
|
|
|
BASEINSTANCES = r'^(?P<instance_id>[^/]+)/%s'
|
|
INSTANCES = BASEINSTANCES + '$'
|
|
USERS = r'^(?P<instance_id>[^/]+)/(?P<user_name>[^/]+)/' \
|
|
r'(?P<user_host>[^/]+)/%s$'
|
|
|
|
|
|
urlpatterns = [
|
|
re_path(r'^$', views.IndexView.as_view(), name='index'),
|
|
re_path(r'^launch$', views.LaunchInstanceView.as_view(), name='launch'),
|
|
re_path(INSTANCES % '', views.DetailView.as_view(), name='detail'),
|
|
re_path(INSTANCES % 'edit_instance', views.UpdateInstanceView.as_view(),
|
|
name='edit_instance'),
|
|
re_path(INSTANCES % 'resize_volume', views.ResizeVolumeView.as_view(),
|
|
name='resize_volume'),
|
|
re_path(INSTANCES % 'resize_instance', views.ResizeInstanceView.as_view(),
|
|
name='resize_instance'),
|
|
re_path(INSTANCES % 'create_user', views.CreateUserView.as_view(),
|
|
name='create_user'),
|
|
re_path(USERS % 'edit_user', views.EditUserView.as_view(),
|
|
name='edit_user'),
|
|
re_path(USERS % 'access_detail', views.AccessDetailView.as_view(),
|
|
name='access_detail'),
|
|
re_path(INSTANCES % 'create_database', views.CreateDatabaseView.as_view(),
|
|
name='create_database'),
|
|
re_path(INSTANCES % 'promote_to_replica_source',
|
|
views.PromoteToReplicaSourceView.as_view(),
|
|
name='promote_to_replica_source'),
|
|
re_path(INSTANCES % 'attach_config',
|
|
views.AttachConfigurationView.as_view(),
|
|
name='attach_config'),
|
|
re_path(INSTANCES % 'manage_root', views.ManageRootView.as_view(),
|
|
name='manage_root'),
|
|
re_path(BASEINSTANCES % 'logs/', include((logs_urls, 'logs'))),
|
|
]
|