Skip to content

Commit 4990cd5

Browse files
authored
Merge pull request #321 from devforth/AdminForth/776
docs: fix docs for the list of adapters
2 parents 8fb4a79 + 9e6af54 commit 4990cd5

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

adminforth/documentation/docs/tutorial/05-ListOfAdapters.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ Used to send emails
1515
### AWS SES Email Adapter
1616

1717
```
18-
npm i adminforth-email-adapter-aws-ses
18+
npm i @adminforth/email-adapter-aws-ses
1919
```
2020

2121
Enables email delivery via [Amazon Simple Email Service (SES)](https://aws.amazon.com/ses/), suitable for high-volume, programmatic email sending.
2222

2323
### Mailgun Email Adapter
2424

2525
```
26-
npm i adminforth-email-adapter-mailgun
26+
npm i @adminforth/email-adapter-mailgun
2727
```
2828

2929
Allows sending transactional or marketing emails using [Mailgun](https://www.mailgun.com/), a developer-friendly email service.
@@ -40,47 +40,47 @@ Used to authenticate users via OAuth 2.0 providers
4040
### Google OAuth Adapter
4141

4242
```
43-
npm i adminforth-google-oauth-adapter
43+
npm i @adminforth/google-oauth-adapter
4444
```
4545

4646
Supports Google sign-in to allow users to authenticate using their Google or Google Workspaces accounts.
4747

4848
### GitHub OAuth Adapter
4949

5050
```
51-
npm i adminforth-github-oauth-adapter
51+
npm i @adminforth/github-oauth-adapter
5252
```
5353

5454
Enables authentication via GitHub accounts, useful for developer tools and open-source apps.
5555

5656
### Facebook OAuth Adapter
5757

5858
```
59-
npm i adminforth-facebook-oauth-adapter
59+
npm i @adminforth/facebook-oauth-adapter
6060
```
6161

6262
Allows users to log in with Facebook credentials. Facebook OAuth is commonly used for social media integrations.
6363

6464
### Keycloak OAuth Adapter
6565

6666
```
67-
npm i adminforth-keycloak-oauth-adapter
67+
npm i @adminforth/keycloak-oauth-adapter
6868
```
6969

7070
Connects AdminForth to an Open-Source [Keycloak](https://www.keycloak.org/) - generally self-hosted - identity provider for enterprise-grade SSO (Single Sign-On).
7171

7272
### Microsoft OAuth Adapter
7373

7474
```
75-
npm i adminforth-microsoft-oauth-adapter
75+
npm i @adminforth/microsoft-oauth-adapter
7676
```
7777

7878
Supports login through Microsoft accounts including Azure AD, Office365, and Outlook.com.
7979

8080
### Twitch OAuth Adapter
8181

8282
```
83-
npm i adminforth-twitch-oauth-adapter
83+
npm i @adminforth/twitch-oauth-adapter
8484
```
8585

8686
Adds support for Twitch authentication, useful for streaming or creator-oriented platforms.
@@ -97,7 +97,7 @@ Is used for image generating AI tools.
9797
### OpenAI Image Generation Adapter
9898

9999
```
100-
npm i adminforth-image-generation-adapter-openai
100+
npm i @adminforth/image-generation-adapter-openai
101101
```
102102

103103
Uses OpenAI’s image generation models (like DALL·E and gpt-image-1) to generate images from text prompts.
@@ -116,7 +116,7 @@ Is used for storing files
116116
### Amazon S3 Storage Adapter
117117

118118
```
119-
npm i adminforth-storage-adapter-amazon-s3
119+
npm i @adminforth/storage-adapter-amazon-s3
120120
```
121121

122122
Stores uploaded files in [Amazon S3](https://aws.amazon.com/s3/), providing scalable cloud storage.
@@ -126,7 +126,7 @@ Can be easily forked and customized to work with any S3-compatible storage servi
126126
### Local Storage Adapter
127127

128128
```
129-
npm i adminforth-storage-adapter-local
129+
npm i @adminforth/storage-adapter-local
130130
```
131131

132132
Stores files locally on the server’s filesystem. Suitable for development or small-scale self-hosted setups.
@@ -145,7 +145,7 @@ Feel free to fork and implement other models including models from Anthropic, Go
145145
### OpenAI Completion Adapter
146146

147147
```
148-
npm i adminforth-completion-adapter-open-ai-chat-gpt
148+
npm i @adminforth/completion-adapter-open-ai-chat-gpt
149149
```
150150

151151
Integrates AdminForth with OpenAI’s ChatGPT models to provide AI-powered completion and conversational features.

0 commit comments

Comments
 (0)