diff --git a/changelog.d/20260731_113208_kurtmckee_update_flows_api_links.rst b/changelog.d/20260731_113208_kurtmckee_update_flows_api_links.rst new file mode 100644 index 000000000..1f8fec389 --- /dev/null +++ b/changelog.d/20260731_113208_kurtmckee_update_flows_api_links.rst @@ -0,0 +1,4 @@ +Documentation +------------- + +- Update the URL to the Flows API documentation. (:pr:`NUMBER`) diff --git a/src/globus_sdk/_internal/extensions/sphinxext/utils.py b/src/globus_sdk/_internal/extensions/sphinxext/utils.py index 70610a6ee..2b2598f47 100644 --- a/src/globus_sdk/_internal/extensions/sphinxext/utils.py +++ b/src/globus_sdk/_internal/extensions/sphinxext/utils.py @@ -54,7 +54,7 @@ def derive_doc_url_base(service: str | None) -> str: elif service == "gcs": return "https://docs.globus.org/globus-connect-server/v5/api" elif service == "flows": - return "https://globusonline.github.io/globus-flows#tag" + return "https://flows.globus.org/redoc#tag" elif service == "compute": return "https://compute.api.globus.org/redoc#tag" else: diff --git a/tests/unit/sphinxext/test_extdoclink_directive.py b/tests/unit/sphinxext/test_extdoclink_directive.py index 6a3dfb8dc..2a26f8c99 100644 --- a/tests/unit/sphinxext/test_extdoclink_directive.py +++ b/tests/unit/sphinxext/test_extdoclink_directive.py @@ -30,7 +30,7 @@ def test_extdoclink_renders_simple(sphinx_runner): ( ("groups", "https://groups.api.globus.org/redoc#operation"), ("gcs", "https://docs.globus.org/globus-connect-server/v5/api"), - ("flows", "https://globusonline.github.io/globus-flows#tag"), + ("flows", "https://flows.globus.org/redoc#tag"), ("compute", "https://compute.api.globus.org/redoc#tag"), ), )