Add Keycloak integration support
All checks were successful
Build And Push Image / docker (push) Successful in 2m59s

- Update domain configuration to portal subdomain with HTTPS
- Add keycloak_id field to member creation and update operations
- Add API endpoint for linking Keycloak accounts to existing members
This commit is contained in:
2025-08-09 18:22:34 +02:00
parent 794b6a09f0
commit 358e9c0ad1
3 changed files with 87 additions and 3 deletions

View File

@@ -310,7 +310,8 @@ export const createMember = async (data: Partial<Member>): Promise<Member> => {
"payment_due_date",
"membership_status",
"address",
"member_since"
"member_since",
"keycloak_id"
];
// Filter the data to only include allowed fields
@@ -392,7 +393,8 @@ export const updateMember = async (id: string, data: Partial<Member>, retryCount
"payment_due_date",
"membership_status",
"address",
"member_since"
"member_since",
"keycloak_id"
];
// Filter the data to only include allowed fields