Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for incorrect parameter name #3258

Merged
merged 1 commit into from
Sep 11, 2024
Merged
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
4 changes: 2 additions & 2 deletions astro/src/content/docs/apis/hosted-backend.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ To use this API, redirect the browser to this route and the router will respond
<APIField name="clientId" type="UUID" required>
The client Id for your Application.
</APIField>
<APIField name="redirect_uri" type="String" optional>
The URL encoded URL that the browser will be redirected to at the end of the logout flow. If not provided, this will be the <InlineField>Logout URL</InlineField> configured for the Application. If another value is used, it must be defined in the <InlineField>Authorized Redirect URLs</InlineField> for the Application.
<APIField name="post_logout_redirect_uri" type="String" optional>
The URL encoded URL that the browser will be redirected to at the end of the logout flow. This value must be in the Application's <InlineField>Authorized Redirect URLs</InlineField> list. If no `post_logout_redirect_uri` is provided, the user will be redirected to the <InlineField>Logout URL</InlineField> configured for the Application.
</APIField>
</APIBlock>

Expand Down
Loading