Skip to content

Commit 3329285

Browse files
authored
Merge pull request #179 from devforth/next
Next
2 parents f8a6f5d + 8b2cf79 commit 3329285

File tree

15 files changed

+62
-6
lines changed

15 files changed

+62
-6
lines changed

adminforth/documentation/docs/tutorial/05-Plugins/10-i18n.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ export default {
115115
{
116116
name: "created_at",
117117
fillOnCreate: ({ initialRecord, adminUser }: any) => new Date().toISOString(),
118+
showIn: {
119+
all: false,
120+
show: true,
121+
},
118122
},
119123
{
120124
name: "uk_string",

adminforth/documentation/docs/tutorial/05-Plugins/11-oauth.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ plugins: [
243243
adapters: [
244244
...
245245
new AdminForthAdapterKeycloakOauth2({
246+
name: "Keycloak",
246247
clientID: process.env.KEYCLOAK_CLIENT_ID,
247248
clientSecret: process.env.KEYCLOAK_CLIENT_SECRET,
248249
keycloakUrl: process.env.KEYCLOAK_URL,

adminforth/documentation/docs/tutorial/05-Plugins/12-inline-create.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ plugins: [
2727

2828
Here is how it looks:
2929

30-
![alt text](inline-create.png)
30+
31+
![alt text](localhost_3000_resource_providers.png)
112 KB
Loading

adminforth/documentation/src/pages/index.tsx

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import styles from './index.module.css';
1212
const images = [
1313
{
1414
original: require('@site/static/img/previews/login_form.png').default,
15-
title: 'Sign in form',
15+
title: 'Authentication and Authorization',
1616
link: '/docs/tutorial/gettingStarted',
1717
description: 'OWASP-Compliant Sign-In already there'
1818
},
@@ -22,6 +22,12 @@ const images = [
2222
link: '/docs/tutorial/gettingStarted',
2323
description: 'Manage users and roles with ease, extend as you like'
2424
},
25+
{
26+
original: require('@site/static/img/previews/sso.png').default,
27+
title: 'OAuth2/OpenID SSO Plugin - one click login',
28+
link: '/docs/tutorial/Plugins/oauth/',
29+
description: 'RFC 6749 SSO plugin with premade Google, Github, Facebook, Keycloak, Microsoft or any custom OAuth2 adapter'
30+
},
2531
{
2632
original: require('@site/static/img/previews/ai_complete.png').default,
2733
title: 'AI autocomplete Plugin - write with ChatGPT',
@@ -64,11 +70,41 @@ const images = [
6470
link: '/docs/tutorial/Customization/branding/',
6571
description: 'Upload your logo, change colors, update titles, make the look to match your brand'
6672
},
73+
{
74+
original: require('@site/static/img/previews/filters.png').default,
75+
title: 'Filters to query your data',
76+
link: '/docs/tutorial/Customization/virtualColumns/#virtual-columns-for-filtering',
77+
description: 'AdminForth provides basic filters out of the box and allows you to create your own'
78+
},
6779
{
6880
original: require('@site/static/img/previews/richeditor.png').default,
6981
title: 'Rich Editor Plugin - WYSIWYG',
7082
link: '/docs/tutorial/Plugins/RichEditor/',
7183
description: 'Attach Rich Editor plugin to your text fields and get WYSIWYG editor for your content'
84+
},
85+
{
86+
original: require('@site/static/img/previews/inplace-edit.png').default,
87+
title: 'List in-place edit Plugin for quick edit',
88+
link: '/docs/tutorial/Plugins/list-in-place-edit/',
89+
description: 'Edit some oftenly used fields in list directly without opening edit page. Decide which fields to be editable in list view'
90+
},
91+
{
92+
original: require('@site/static/img/previews/inplace-create.png').default,
93+
title: 'Inline create Plugin for quick create',
94+
link: '/docs/tutorial/Plugins/inline-create/',
95+
description: 'For tables with small fields number which should be created massively, use inline create plugin to create records directly in list view'
96+
},
97+
{
98+
original: require('@site/static/img/previews/importexport.png').default,
99+
title: 'Import/Export CSV Plugin',
100+
link: '/docs/tutorial/Plugins/import-export/',
101+
description: 'Export tables to CSV and import from CSV with one click. Move data between environments easily'
102+
},
103+
{
104+
original: require('@site/static/img/previews/translate.png').default,
105+
title: 'AI Translation Plugin - translate your admin and External apps',
106+
link: '/docs/tutorial/Plugins/i18n/',
107+
description: 'Use LLMs to translate any external apps (Mobile, Nuxt, etc.) OR/AND admin panel with minimal effort. Any language supported'
72108
}
73109
];
74110

130 KB
Loading
148 KB
Loading
112 KB
Loading
118 KB
Loading
79.6 KB
Loading

0 commit comments

Comments
 (0)