diff --git a/www/docs/schemas/adapters.md b/www/docs/schemas/adapters.md index f08bb14e6b..e4544b7198 100644 --- a/www/docs/schemas/adapters.md +++ b/www/docs/schemas/adapters.md @@ -227,4 +227,4 @@ if (process.env.NODE_ENV === "production") { ## Custom Adapter -See the tutorial for [creating a database adapter](/tutorials/creating-a-database-adapter) for more information on how to create a custom adapter. + See the tutorial for [creating a database adapter](/tutorials/creating-a-database-adapter) for more information on how to create a custom adapter. Have a look at the [adapters repository](https://github.com/nextauthjs/adapters) to see community maintained custom adapters or add your own. diff --git a/www/docs/tutorials/creating-a-database-adapter.md b/www/docs/tutorials/creating-a-database-adapter.md index c3b3eb74e3..9b484bd442 100644 --- a/www/docs/tutorials/creating-a-database-adapter.md +++ b/www/docs/tutorials/creating-a-database-adapter.md @@ -3,7 +3,7 @@ id: creating-a-database-adapter title: Creating a database adapter --- -Using a custom adapter you can connect to any database backend or even several different databases. +Using a custom adapter you can connect to any database backend or even several different databases. Custom adapters created and maintained by our community can be found in the [adapters repository](https://github.com/nextauthjs/adapters). Feel free to add a custom adapter from your project to the repository, or even become a maintainer of a certain adapter. Custom adapters can still be created and used in a project without being added to the repository. Creating a custom adapter can be considerable undertaking and will require some trial and error and some reverse engineering using the built-in adapters for reference.