mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add SecurityScorecard node (#1371)
* ✨Add SecurityScorecard node * Move portfolio:edit fields to the main view. The API request uses PUT so it will replace undefined fields if they are not set. * Style improvements * ⚡ Improvements to #1247 * ⚡ Improvements * ⚡ Minor improvements on SecurityScorecard Node Co-authored-by: Mika Luhta <12100880+mluhta@users.noreply.github.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class SecurityScorecardApi implements ICredentialType {
|
||||
name = 'securityScorecardApi';
|
||||
displayName = 'SecurityScorecard API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user