Fix links to quickstarts (#21639)

Closes #21637
This commit is contained in:
Stian Thorgersen 2023-07-12 14:03:49 +02:00 committed by GitHub
parent a2100d18d4
commit 304897b226
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -370,4 +370,4 @@ to the `middleware()` call:
==== Complete example
A complete example using the Node.js adapter usage can be found in {quickstartRepo_link}/tree/latest/service-nodejs/[Keycloak quickstarts for Node.js]
A complete example using the Node.js adapter usage can be found in {quickstartRepo_link}/tree/latest/nodejs/resource-server[Keycloak quickstarts for Node.js]

View file

@ -25,10 +25,10 @@ There are two sample projects in link:{quickstartRepo_link}[{quickstartRepo_name
|===
|Name |Description
| {quickstartRepo_link}/tree/latest/user-storage-jpa[user-storage-jpa]
| {quickstartRepo_link}/tree/latest/extension/user-storage-jpa[user-storage-jpa]
| Demonstrates implementing a user storage provider using EJB and JPA.
| {quickstartRepo_link}/tree/latest/user-storage-simple[user-storage-simple]
| {quickstartRepo_link}/tree/latest/extension/user-storage-simple[user-storage-simple]
| Demonstrates implementing a user storage provider using a simple properties file that contains username/password key pairs.
|===

View file

@ -11,6 +11,6 @@ Providers implementations are required to be plain java objects which implement
You can still implement your custom `UserStorageProvider` class, which is able to integrate an external database by JPA Entity Manager, as shown in this example:
- {quickstartRepo_link}/tree/latest/user-storage-jpa
- {quickstartRepo_link}/tree/latest/extension/user-storage-jpa
CDI is not supported.