mirror of
https://github.com/aljazceru/n8n-nodes-signal-cli.git
synced 2025-12-18 14:44:26 +01:00
🤖🌏
This commit is contained in:
26
credentials/SignalCliApi.credentials.ts
Normal file
26
credentials/SignalCliApi.credentials.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class SignalCliApi implements ICredentialType {
|
||||
name = 'signalCliApi';
|
||||
displayName = 'Signal CLI API';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'URL',
|
||||
name: 'url',
|
||||
type: 'string',
|
||||
default: process.env.ENDPOINT || '',
|
||||
placeholder: 'http://localhost:8085',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
displayName: 'Account',
|
||||
name: 'account',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user