Skip to content

Commit 963c66a

Browse files
committed
docs: minor links fixes
1 parent cd419a2 commit 963c66a

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

adminforth/documentation/blog/2025-03-25-keycloack/index.md renamed to adminforth/documentation/blog/2025-03-25-keycloak/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
slug: keycloak-setup-example
33
title: "Setup AdminForth Authorization via Keycloak"
44
authors: mpipkun
5-
tags: [keycloak, auth, authorization]
5+
tags: [keycloak, authentication]
66
description: "The ultimate guide to setting up AdminForth authorization via Keycloak"
77
# image: "/ogs/ga-tf-aws.jpg"
88
---
@@ -11,6 +11,8 @@ Keycloak is an open-source identity and access management solution that provides
1111

1212
In this guide, we will walk you through the process of setting up AdminForth authorization via Keycloak. Most important we will show you how to set up Keycloak in a Docker container and configure it to work with AdminForth.
1313

14+
<!-- truncate -->
15+
1416
## Prerequisites
1517

1618
- Docker installed on your machine

adminforth/documentation/blog/authors.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@ ivanb:
33
title: Maintainer of AdminForth
44
url: https://github.com/ivictbor
55
image_url: https://avatars.githubusercontent.com/u/1838656?v=4
6+
7+
mpipkun:
8+
name: Maxim Pipkun
9+
title: Developer of AdminForth
10+
url: https://github.com/NoOne7135
11+
image_url: https://avatars.githubusercontent.com/u/120279695?v=4

adminforth/documentation/blog/tags.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,14 @@ versioning:
4141
npm:
4242
label: NPM
4343
permalink: /npm
44-
description: NPM is a package manager for the JavaScript programming language that allows developers to share and reuse code.
44+
description: NPM is a package manager for the JavaScript programming language that allows developers to share and reuse code.
45+
46+
keycloak:
47+
label: Keycloak
48+
permalink: /keycloak
49+
description: Keycloak is an open-source identity and access management solution for modern applications and services.
50+
51+
authentication:
52+
label: Auth
53+
permalink: /auth
54+
description: Authentication is the process of verifying the identity of a user or system. Authentication is a critical component of security in software applications and systems.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This plugin allows you translate your AdminForth application to multiple languages.
44
Main features:
5-
- Stores all translation strings in your application in a single AdminForth resource. You can set [allowed actions](/docs/tutorial/Customization/limitingAccess/#disable-some-action-based-on-logged-in-user-record-or-role) only to Developers/Translators role if you don't want other users to see/edit the translations.
5+
- Stores all translation strings in your application in a single AdminForth resource. You can set [allowed actions](/docs/tutorial/Customization/limitingAccess/) only to Developers/Translators role if you don't want other users to see/edit the translations.
66
- Supports AI completion adapters to help with translations. For example, you can use OpenAI ChatGPT to generate translations. Supports correct pluralization, even for Slavic languages.
77
- Supports any number of languages.
88

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Install Adapter:
221221
npm install @adminforth/keycloak-oauth-adapter --save
222222
```
223223

224-
If you need a basic Keycloak setup which tested with AdminForth, you can follow [this minimal KeyClock setup example](blog/2025-03-25-keycloack/index.md).
224+
If you need a basic Keycloak setup which tested with AdminForth, you can follow [this minimal KeyClock setup example](/blog/keycloak-setup-example).
225225

226226
1. Update your `.env` file with the following Keycloak configuration:
227227

adminforth/documentation/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const config: Config = {
7676
"../types/Back.ts",
7777
"../types/Common.ts",
7878
"../types/FrontendAPI.ts",
79-
"../plugins/**/types.ts",
79+
// "../plugins/**/types.ts",
8080
],
8181
plugin: ["./typedoc-plugin.mjs"],
8282
readme: "none",

0 commit comments

Comments
 (0)