Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Documentation
-------------

- Update the URL to the Flows API documentation. (:pr:`NUMBER`)
2 changes: 1 addition & 1 deletion src/globus_sdk/_internal/extensions/sphinxext/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/sphinxext/test_extdoclink_directive.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
),
)
Expand Down
Loading