@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
10 lines (9 loc) • 387 B
TypeScript
import { AuthService } from '../../../auth/auth.service';
import { ICredentialContext } from 'n8n-workflow';
import { Request } from 'express';
export declare class DynamicCredentialWebService {
private readonly authService;
constructor(authService: AuthService);
private buildCookieCredentialContext;
getCredentialContextFromRequest(req: Request): ICredentialContext;
}