26 lines
573 B
TypeScript
26 lines
573 B
TypeScript
|
|
import { ICredentialType, NodePropertyTypes, INodeProperties } from 'n8n-workflow';
|
||
|
|
|
||
|
|
export class ClassNameReplace implements ICredentialType {
|
||
|
|
name = 'N8nNameReplace';
|
||
|
|
|
||
|
|
displayName = 'DisplayNameReplace';
|
||
|
|
|
||
|
|
properties: INodeProperties[] = [
|
||
|
|
// The credentials to get from user and save encrypted.
|
||
|
|
// Properties can be defined exactly in the same way
|
||
|
|
// as node properties.
|
||
|
|
{
|
||
|
|
displayName: 'User',
|
||
|
|
name: 'user',
|
||
|
|
type: 'string',
|
||
|
|
default: '',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
displayName: 'Access Token',
|
||
|
|
name: 'accessToken',
|
||
|
|
type: 'string',
|
||
|
|
default: '',
|
||
|
|
},
|
||
|
|
];
|
||
|
|
}
|