feat: implement AdminGuard and QueryGuard for enhanced access control; refactor API and query handling; add deleteQuery method in QueryHandlerService; update QueryResponse type for improved response handling

This commit is contained in:
Boris D
2025-10-10 11:54:30 +03:00
parent ca134414b0
commit 5a15833080
8 changed files with 71 additions and 9 deletions

View File

@ -46,7 +46,8 @@ export const registeredModules = {
};
export type QueryResponse = {
statusCode: number;
statusCode?: number;
response: any;
headers: Record<string, string>;
headers?: Record<string, string>;
redirect?: string;
};