mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-02 13:03:08 +00:00
docs(api): set base uri for connectRPC endpoints (#10536)
# Which Problems Are Solved
connectRPC based endpoints were missing the baseURI leading to wrongly
displayed endpoints in case you last visited anV1 API endpoint, e.g.
after visiting Search Project Grants on the Management API, the endpoint
for ListProjectGrants on the project service would be display as
`https://$CUSTOM-DOMAIN/management/v1/zitadel.project.v2beta.ProjectService/ListProjectGrants
` instead of
`https://$CUSTOM-DOMAIN/zitadel.project.v2beta.ProjectService/ListProjectGrants`
# How the Problems Are Solved
Set the base path / server for the connectRPC calls.
# Additional Changes
None
# Additional Context
- closes #10532
(cherry picked from commit 89221fa402)
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
openapi: 3.1.0
|
||||
info:
|
||||
version: v2
|
||||
version: v2
|
||||
servers:
|
||||
- url: https://$CUSTOM-DOMAIN
|
||||
Reference in New Issue
Block a user