mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
a5b6b3d209
* add medium node * minor fixes * fix publication post * fix according to feedback * additional fixes * fix license description * ⚡ Small improvements * ⚡ Improvements Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
18 lines
316 B
TypeScript
18 lines
316 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class MediumApi implements ICredentialType {
|
|
name = 'mediumApi';
|
|
displayName = 'Medium API';
|
|
properties = [
|
|
{
|
|
displayName: 'Access Token',
|
|
name: 'accessToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|