dtamind-components
Version:
Apps integration for Dtamind. Contain Nodes and Credentials.
21 lines • 877 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ConfluenceServerDCApi {
constructor() {
this.label = 'Confluence Server/Data Center API';
this.name = 'confluenceServerDCApi';
this.version = 1.0;
this.description =
'Refer to <a target="_blank" href="https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html/">official guide</a> on how to get Personal Access Token</a> on Confluence';
this.inputs = [
{
label: 'Personal Access Token',
name: 'personalAccessToken',
type: 'password',
placeholder: '<CONFLUENCE_PERSONAL_ACCESS_TOKEN>'
}
];
}
}
module.exports = { credClass: ConfluenceServerDCApi };
//# sourceMappingURL=ConfluenceServerDCApi.credential.js.map