Refactor NocoDB settings to support dynamic table configuration and update related validation
All checks were successful
Build And Push Image / docker (push) Successful in 3m13s

This commit is contained in:
2025-08-07 20:43:39 +02:00
parent d0d7a34ae7
commit 22a74c6b33
6 changed files with 97 additions and 55 deletions

View File

@@ -139,10 +139,10 @@ export interface Member {
// Admin-only NocoDB Configuration
export interface NocoDBSettings {
tableId: string;
url: string;
apiKey: string;
baseId: string;
url: string;
tables: { [tableName: string]: string }; // e.g., { "members": "m2sri3jqfqutiy5", "events": "evt123abc", ... }
}
export interface MemberResponse {