Skip to content

Commit 51deff0

Browse files
Fix broken links in jsdocs (#2031)
1 parent 80e3443 commit 51deff0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/server/client.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export interface Auth0ClientOptions {
9898
/**
9999
* Configure the session timeouts and whether to use rolling sessions or not.
100100
*
101-
* See [Session configuration](https://github.com/auth0/nextjs-auth0#session-configuration) for additional details.
101+
* See [Session configuration](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md#session-configuration) for additional details.
102102
*/
103103
session?: SessionConfiguration;
104104

@@ -112,28 +112,28 @@ export interface Auth0ClientOptions {
112112
/**
113113
* A method to manipulate the session before persisting it.
114114
*
115-
* See [beforeSessionSaved](https://github.com/auth0/nextjs-auth0#beforesessionsaved) for additional details
115+
* See [beforeSessionSaved](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md#beforesessionsaved) for additional details
116116
*/
117117
beforeSessionSaved?: BeforeSessionSavedHook;
118118
/**
119119
* A method to handle errors or manage redirects after attempting to authenticate.
120120
*
121-
* See [onCallback](https://github.com/auth0/nextjs-auth0#oncallback) for additional details
121+
* See [onCallback](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md#oncallback) for additional details
122122
*/
123123
onCallback?: OnCallbackHook;
124124

125125
// provide a session store to persist sessions in your own data store
126126
/**
127127
* A custom session store implementation used to persist sessions to a data store.
128128
*
129-
* See [Database sessions](https://github.com/auth0/nextjs-auth0#database-sessions) for additional details.
129+
* See [Database sessions](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md#database-sessions) for additional details.
130130
*/
131131
sessionStore?: SessionDataStore;
132132

133133
/**
134134
* Configure the paths for the authentication routes.
135135
*
136-
* See [Custom routes](https://github.com/auth0/nextjs-auth0#custom-routes) for additional details.
136+
* See [Custom routes](https://github.com/auth0/nextjs-auth0/blob/main/EXAMPLES.md#custom-routes) for additional details.
137137
*/
138138
routes?: RoutesOptions;
139139

0 commit comments

Comments
 (0)