-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Collection Flow V2 Main Branch #2912
base: dev
Are you sure you want to change the base?
Conversation
* feat: added formatting for rules & updated tests * feat: added transformer plugin * fix: lock file
* feat: implemented document field in ui package * feat: finalized documentfield * fix: fixed build * fix: cleanup
url: 'http://localhost:3000/upload-protected', | ||
resultPath: 'filename', | ||
headers: { | ||
Authorization: '{token}', |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
authorization header
describe('formatHeaders', () => { | ||
it('should format headers with metadata', () => { | ||
const headers = { | ||
Authorization: 'Bearer {token}', |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
authorization header
const result = formatHeaders(headers, metadata); | ||
|
||
expect(result).toEqual({ | ||
Authorization: 'Bearer abc123', |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
No description provided.