Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
761400e
docs: add device PIN and biometrics page skeleton
hperl Jul 10, 2026
f4ad4ad
docs: add deviceauthn PIN protocol reference
hperl Jul 10, 2026
e8d9457
docs: add deviceauthn PIN client implementation requirements
hperl Jul 10, 2026
2d32301
docs: add deviceauthn PIN iOS guide
hperl Jul 10, 2026
0de862e
docs: add deviceauthn PIN Android guide
hperl Jul 10, 2026
3284a5c
docs: fail closed when Android sealing key is not hardware-backed
hperl Jul 10, 2026
4b54c27
docs: add deviceauthn PIN recovery, troubleshooting, and security model
hperl Jul 10, 2026
cfeb55f
docs: link device binding page to first-factor PIN docs
hperl Jul 10, 2026
af1a27e
docs: register device PIN page in network and OEL sidebars
hperl Jul 10, 2026
478580b
docs: fix flow-submission verb and polish deviceauthn PIN page
hperl Jul 10, 2026
50732ca
Merge remote-tracking branch 'origin/master' into deviceauthn-pin-docs
hperl Jul 11, 2026
0724946
docs: document server-assigned client_key_id on the device binding page
hperl Jul 11, 2026
abe2eac
docs: split device binding docs into platform subpages
hperl Jul 11, 2026
12d2149
docs: fold PIN and biometrics content into the platform guides
hperl Jul 11, 2026
7a4fa6a
docs: rename device binding section to device authentication
hperl Jul 11, 2026
280a058
docs: list device authentication in the network sidebar only
hperl Jul 11, 2026
8eca367
docs: harden reference code per review
hperl Jul 12, 2026
859a0cc
docs: migrate device authentication section to deployment structure
hperl Jul 13, 2026
9eb3c36
docs: restore section anchors on device authentication cross-links
hperl Jul 13, 2026
c2497bd
docs: fix inline links in device authentication partials and document…
hperl Jul 17, 2026
10a8063
docs: format flutter partial at the raised print width
hperl Jul 17, 2026
e4017db
Merge remote-tracking branch 'origin/master' into deviceauthn-pin-docs
hperl Jul 17, 2026
f25269f
docs: keep MFA overview links inline
hperl Jul 17, 2026
363977a
docs: document the 30-key limit and treat the nonce as opaque
hperl Jul 17, 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
11 changes: 10 additions & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ module.exports = {
...require("ory-prettier-styles"),
overrides: [
{
files: ["docs/**/*.md", "docs/**/*.mdx"],
// The deviceauthn partials carry inline <SameDeploymentLink> elements whose
// opening tags exceed 80 characters. At the default width, prettier pushes
// those tags onto their own lines, which MDX then parses as block-level JSX
// and breaks the surrounding paragraph or list item.
files: [
"docs/**/*.md",
"docs/**/*.mdx",
"src/components/Shared/kratos/passwordless/deviceauthn/*.mdx",
"src/components/Shared/kratos/01_mfa-overview.mdx",
],
options: {
printWidth: 130,
},
Expand Down
Loading
Loading