From 32d48626d8757f76ac7d09951a960960ee589551 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 22 Jul 2019 21:00:42 +0200 Subject: [PATCH] Update api-ref location The api documentation is now published on docs.openstack.org instead of developer.openstack.org. Update all links that are changed to the new location. Note that redirects will be set up as well but let's point now to the new location. For details, see: http://lists.openstack.org/pipermail/openstack-discuss/2019-July/007828.html Change-Id: I644db7a0b86142551c0660e4e2fe3a1a4f6eede5 --- openstack_dashboard/api/rest/neutron.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openstack_dashboard/api/rest/neutron.py b/openstack_dashboard/api/rest/neutron.py index 7371e35391..bd2054f585 100644 --- a/openstack_dashboard/api/rest/neutron.py +++ b/openstack_dashboard/api/rest/neutron.py @@ -27,7 +27,7 @@ from openstack_dashboard.usage import quotas class Networks(generic.View): """API for Neutron Networks - http://developer.openstack.org/api-ref-networking-v2.html + https://docs.openstack.org/api-ref/network/v2/index.html """ url_regex = r'neutron/networks/$' @@ -79,7 +79,7 @@ class Networks(generic.View): class Subnets(generic.View): """API for Neutron Subnets - http://developer.openstack.org/api-ref-networking-v2.html#subnets + https://docs.openstack.org/api-ref/network/v2/index.html#subnets """ url_regex = r'neutron/subnets/$' @@ -126,7 +126,7 @@ class Subnets(generic.View): class Ports(generic.View): """API for Neutron Ports - http://developer.openstack.org/api-ref-networking-v2.html#ports + https://docs.openstack.org/api-ref/network/v2/index.html#ports """ url_regex = r'neutron/ports/$'