Skip to content

Commit a4787b8

Browse files
committed
docs: update references and styling of spec links
1 parent 843943d commit a4787b8

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

docs/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ false
14011401

14021402
### features.registration
14031403

1404-
[`Dynamic Client Registration 1.0`](https://openid.net/specs/openid-connect-registration-1_0-errata2.html) and [`RFC7591` - OAuth 2.0 Dynamic Client Registration Protocol](https://www.rfc-editor.org/rfc/rfc7591.html)
1404+
[`OIDC Dynamic Client Registration 1.0`](https://openid.net/specs/openid-connect-registration-1_0-errata2.html) and [`RFC7591`](https://www.rfc-editor.org/rfc/rfc7591.html) - OAuth 2.0 Dynamic Client Registration Protocol
14051405

14061406
Enables Dynamic Client Registration.
14071407

@@ -1548,7 +1548,7 @@ async function secretFactory(ctx) {
15481548

15491549
### features.registrationManagement
15501550

1551-
[OAuth 2.0 Dynamic Client Registration Management Protocol](https://www.rfc-editor.org/rfc/rfc7592.html)
1551+
[`RFC7592`](https://www.rfc-editor.org/rfc/rfc7592.html) - OAuth 2.0 Dynamic Client Registration Management Protocol
15521552

15531553
Enables Update and Delete features described in the RFC
15541554

@@ -1599,7 +1599,7 @@ true
15991599

16001600
### features.requestObjects
16011601

1602-
[`OIDC Core 1.0`](https://openid.net/specs/openid-connect-core-1_0-errata2.html#RequestObject) and [JWT Secured Authorization Request (`JAR`)](https://www.rfc-editor.org/rfc/rfc9101.html) - Request Object
1602+
[`OIDC Core 1.0`](https://openid.net/specs/openid-connect-core-1_0-errata2.html#RequestObject) and [`RFC9101`](https://www.rfc-editor.org/rfc/rfc9101.html#name-passing-a-request-object-by) - Passing a Request Object by Value (`JAR`)
16031603

16041604
Enables the use and validations of the `request` parameter.
16051605

@@ -2977,9 +2977,10 @@ async function pairwiseIdentifier(ctx, accountId, client) {
29772977
29782978
### pkce
29792979
2980-
[`RFC7636` - Proof Key for Code Exchange (`PKCE`)](https://www.rfc-editor.org/rfc/rfc7636.html)
2980+
[`RFC7636`](https://www.rfc-editor.org/rfc/rfc7636.html) - Proof Key for Code Exchange (`PKCE`)
29812981
2982-
`PKCE` configuration such as available methods and policy check on required use of `PKCE`
2982+
`PKCE` configuration such as policy check on the required use of `PKCE`
2983+
29832984
29842985
29852986
### pkce.required

lib/helpers/defaults.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,7 +1430,7 @@ function makeDefaults() {
14301430
/*
14311431
* features.registration
14321432
*
1433-
* title: [`Dynamic Client Registration 1.0`](https://openid.net/specs/openid-connect-registration-1_0-errata2.html) and [`RFC7591` - OAuth 2.0 Dynamic Client Registration Protocol](https://www.rfc-editor.org/rfc/rfc7591.html)
1433+
* title: [`OIDC Dynamic Client Registration 1.0`](https://openid.net/specs/openid-connect-registration-1_0-errata2.html) and [`RFC7591`](https://www.rfc-editor.org/rfc/rfc7591.html) - OAuth 2.0 Dynamic Client Registration Protocol
14341434
*
14351435
* description: Enables Dynamic Client Registration.
14361436
*/
@@ -1552,7 +1552,7 @@ function makeDefaults() {
15521552
/*
15531553
* features.registrationManagement
15541554
*
1555-
* title: [OAuth 2.0 Dynamic Client Registration Management Protocol](https://www.rfc-editor.org/rfc/rfc7592.html)
1555+
* title: [`RFC7592`](https://www.rfc-editor.org/rfc/rfc7592.html) - OAuth 2.0 Dynamic Client Registration Management Protocol
15561556
*
15571557
* description: Enables Update and Delete features described in the RFC
15581558
*/
@@ -1889,7 +1889,7 @@ function makeDefaults() {
18891889
/*
18901890
* features.requestObjects
18911891
*
1892-
* title: [`OIDC Core 1.0`](https://openid.net/specs/openid-connect-core-1_0-errata2.html#RequestObject) and [JWT Secured Authorization Request (`JAR`)](https://www.rfc-editor.org/rfc/rfc9101.html) - Request Object
1892+
* title: [`OIDC Core 1.0`](https://openid.net/specs/openid-connect-core-1_0-errata2.html#RequestObject) and [`RFC9101`](https://www.rfc-editor.org/rfc/rfc9101.html#name-passing-a-request-object-by) - Passing a Request Object by Value (`JAR`)
18931893
*
18941894
* description: Enables the use and validations of the `request` parameter.
18951895
*/
@@ -2128,9 +2128,11 @@ function makeDefaults() {
21282128

21292129
/*
21302130
* pkce
2131-
* title: [`RFC7636` - Proof Key for Code Exchange (`PKCE`)](https://www.rfc-editor.org/rfc/rfc7636.html)
2132-
* description: `PKCE` configuration such as available methods and policy check on required use of
2133-
* `PKCE`
2131+
*
2132+
* title: [`RFC7636`](https://www.rfc-editor.org/rfc/rfc7636.html) - Proof Key for Code Exchange (`PKCE`)
2133+
*
2134+
* description: `PKCE` configuration such as policy check on the required use of `PKCE`
2135+
*
21342136
* @nodefault
21352137
*/
21362138
pkce: {

0 commit comments

Comments
 (0)