diff options
author | Bin Yang <bin.yang@windriver.com> | 2018-08-14 10:51:47 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2018-08-14 10:51:47 +0000 |
commit | 8eacf7b7496a7864313595dcf3780d83b423c338 (patch) | |
tree | 95d011aa7142858af182ac8b936d41bd44c0cad6 /windriver/titanium_cloud/extensions/urlsV1.py | |
parent | 39d394d0a5c02fbe122f0b78f4a5a47bf5ec4bae (diff) |
API upgrading for catalog
Change-Id: I26301b701ca7fb915112ad8d35454d0488a91fd1
Issue-ID: MULTICLOUD-297
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'windriver/titanium_cloud/extensions/urlsV1.py')
-rw-r--r-- | windriver/titanium_cloud/extensions/urlsV1.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/windriver/titanium_cloud/extensions/urlsV1.py b/windriver/titanium_cloud/extensions/urlsV1.py new file mode 100644 index 00000000..f6398ef6 --- /dev/null +++ b/windriver/titanium_cloud/extensions/urlsV1.py @@ -0,0 +1,24 @@ +# Copyright (c) 2017-2018 Wind River Systems, Inc. +# +# 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 url +from rest_framework.urlpatterns import format_suffix_patterns + +from titanium_cloud.extensions.views import extensions + +urlpatterns = [ + url(r'^sions/?$', extensions.APIv1Extensions.as_view()), +] + +urlpatterns = format_suffix_patterns(urlpatterns) |