Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
9327243
refactor: migrate auth API navigation from generated files to static …
mikemimik May 14, 2026
766e619
feat: add redirects for auth API docs restructuring
mikemimik May 14, 2026
e5e7991
fix: remove muti-factor-authentication typo directory (en)
mikemimik May 14, 2026
3ecb810
feat: add multi-factor-authentication docs with correct spelling (en)
mikemimik May 14, 2026
406cb32
refactor: remove old fr-ca auth API files from previous structure
mikemimik May 14, 2026
29521ca
feat: update existing fr-ca auth API docs with French content
mikemimik May 14, 2026
df6806a
feat: add fr-ca auth API docs for new directory structure
mikemimik May 14, 2026
17f5aec
refactor: remove old ja-jp auth API files from previous structure
mikemimik May 14, 2026
80ae085
feat: update existing ja-jp auth API docs with Japanese content
mikemimik May 14, 2026
6983411
feat: add ja-jp auth API docs for new directory structure
mikemimik May 14, 2026
21a2493
refactor: extract auth API navigation pages into dedicated files
mikemimik May 14, 2026
3de314f
refactor: wrap auth API nav groups in root-level group object
mikemimik May 14, 2026
051e19d
fix: use explicit index path for login nav entry to show correct side…
mikemimik May 15, 2026
cfc61cf
fix: update japanese translation of page
mikemimik May 19, 2026
5065691
fix(fr-ca): remove zero-width space heading anchors from auth API docs
mikemimik May 26, 2026
29fe56c
fix(ja-jp): remove zero-width space heading anchors from auth API docs
mikemimik May 26, 2026
398945e
fix(i18n): wrap bare JSON in code fences to fix MDX parse errors
mikemimik May 26, 2026
0714afb
fix(nav): update auth API refs to point to api.authentication files
mikemimik May 26, 2026
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
2 changes: 1 addition & 1 deletion main/config/nav.fr-ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -2355,7 +2355,7 @@
{
"dropdown": "Authentication API",
"icon": "list",
"$ref": "./navigation/generated/authentication.fr-ca.json"
"$ref": "./navigation/api.authentication.fr-ca.json"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion main/config/nav.ja-jp.json
Original file line number Diff line number Diff line change
Expand Up @@ -2355,7 +2355,7 @@
{
"dropdown": "Authentication API",
"icon": "list",
"$ref": "./navigation/generated/authentication.ja-jp.json"
"$ref": "./navigation/api.authentication.ja-jp.json"
}
]
},
Expand Down
196 changes: 196 additions & 0 deletions main/config/navigation/api.authentication.en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
{
"pages": [
"docs/api/authentication",
{
"group": " ",
"pages": [
{
"group": "Login",
"pages": [
"docs/api/authentication/login/index",
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ℹ️ It's necessary to do this /index bit to make Mintlify render the page title correctly in the sidebar. If we don't add /index the sidebar will say "Login" instead of "Social"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

huh! i tested this locally by changing this like in the nav to docs/api/authentication/login and moving docs/api/authentication/login/index.mdx to docs/api/authentication/login.mdx and it correctly shows the page title as "Social":

Image

"docs/api/authentication/login/authenticate-using-database",
"docs/api/authentication/login/enterprise-saml-and-others",
"docs/api/authentication/login/start-back-channel-login",
"docs/api/authentication/login/check-back-channel-login-status"
]
},
{
"group": "Logout",
"pages": [
"docs/api/authentication/logout/auth-0-logout",
"docs/api/authentication/logout/oidc-logout",
"docs/api/authentication/logout/saml-logout",
"docs/api/authentication/logout/global-token-revocation"
]
},
{
"group": "Passwordless",
"pages": [
"docs/api/authentication/passwordless/get-code-or-link",
"docs/api/authentication/passwordless/authenticate-user",
"docs/api/authentication/passwordless/verify"
]
},
{
"group": "Signup",
"pages": [
"docs/api/authentication/signup/create-a-new-user"
]
},
{
"group": "Change Password",
"pages": [
"docs/api/authentication/change-password/change-password"
]
},
{
"group": "User Profile",
"pages": [
"docs/api/authentication/user-profile/get-user-info"
]
},
{
"group": "Multi Factor Authentication",
"pages": [
"docs/api/authentication/multi-factor-authentication/request-mfa-challenge",
"docs/api/authentication/multi-factor-authentication/verify-mfa-with-otp",
"docs/api/authentication/multi-factor-authentication/verify-with-out-of-band",
"docs/api/authentication/multi-factor-authentication/verify-with-recovery-code",
"docs/api/authentication/multi-factor-authentication/add-an-authenticator",
"docs/api/authentication/multi-factor-authentication/list-authenticators",
"docs/api/authentication/multi-factor-authentication/delete-authenticator"
]
},
{
"group": "SAML",
"pages": [
"docs/api/authentication/saml/accept-saml-request",
"docs/api/authentication/saml/get-saml-metadata",
"docs/api/authentication/saml/idp-initiated-sso"
]
},
{
"group": "WS Federation",
"pages": [
"docs/api/authentication/ws-federation/accept-ws-federation-request",
"docs/api/authentication/ws-federation/get-ws-federation-metadata"
]
},
{
"group": "Dynamic Application (Client) Registration",
"pages": [
"docs/api/authentication/dynamic-application-client-registration/dynamic-application-registration"
]
},
{
"group": "Authorization Code Flow",
"pages": [
"docs/api/authentication/authorization-code-flow/authorize-application",
"docs/api/authentication/authorization-code-flow/get-token"
]
},
{
"group": "Authorization Code Flow with PKCE",
"pages": [
"docs/api/authentication/authorization-code-flow-with-pkce/authorize-with-pkce",
"docs/api/authentication/authorization-code-flow-with-pkce/get-token-pkce"
]
},
{
"group": "Authorization Code Flow with Enhanced Privacy Protection",
"pages": [
"docs/api/authentication/authorization-code-flow-with-enhanced-privacy-protection/push-authorization-requests",
"docs/api/authentication/authorization-code-flow-with-enhanced-privacy-protection/authorize",
"docs/api/authentication/authorization-code-flow-with-enhanced-privacy-protection/exchange-authorization-code-for-token"
]
},
{
"group": "Client Credential Flow",
"pages": [
"docs/api/authentication/client-credential-flow/get-token"
]
},
{
"group": "Implicit Flow",
"pages": [
"docs/api/authentication/implicit-flow/authorize"
]
},
{
"group": "Custom Token Exchange",
"pages": [
"docs/api/authentication/custom-token-exchange/get-token"
]
},
{
"group": "Resource Owner Password Flow",
"pages": [
"docs/api/authentication/resource-owner-password-flow/get-token"
]
},
{
"group": "Device Authorization Flow",
"pages": [
"docs/api/authentication/device-authorization-flow/authorize-device"
]
},
{
"group": "Refresh Token",
"pages": [
"docs/api/authentication/refresh-token/refresh-token"
]
},
{
"group": "Revoke Refresh Token",
"pages": [
"docs/api/authentication/revoke-refresh-token/revoke-refresh-token"
]
},
{
"group": "Token Exchange for Native Social",
"pages": [
"docs/api/authentication/token-exchange-for-native-social/token-exchange-native-social"
]
},
{
"group": "Login [Legacy]",
"pages": [
"docs/api/authentication/login-legacy/social-with-providers-access-token",
"docs/api/authentication/login-legacy/database-ad-lapd-active"
]
},
{
"group": "User Profile [Legacy]",
"pages": [
"docs/api/authentication/user-profile-legacy/get-token-info"
]
},
{
"group": "Account Linking [Legacy]",
"pages": [
"docs/api/authentication/account-linking-legacy/link",
"docs/api/authentication/account-linking-legacy/unlink"
]
},
{
"group": "Delegation [Legacy]",
"pages": [
"docs/api/authentication/delegation-legacy/delegation"
]
},
{
"group": "Impersonation [Legacy]",
"pages": [
"docs/api/authentication/impersonation-legacy/impersonation"
]
},
{
"group": "Resource Owner [Legacy]",
"pages": [
"docs/api/authentication/resource-owner-legacy/resource-owner-password-grant"
]
}
]
}
]
}
Loading
Loading