mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
28 lines
581 B
TypeScript
28 lines
581 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
NodePropertyTypes,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
|
||
|
export class ClassNameReplace implements ICredentialType {
|
||
|
name = 'N8nNameReplace';
|
||
|
displayName = 'DisplayNameReplace';
|
||
|
properties = [
|
||
|
// 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' as NodePropertyTypes,
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Access Token',
|
||
|
name: 'accessToken',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
default: '',
|
||
|
},
|
||
|
];
|
||
|
}
|