@gregoriusrippenstein/node-red-contrib-flowhub
Version:
FlowHub.org: flow management with GitHub.
31 lines (29 loc) • 845 B
HTML
<script type="text/javascript">
(function ($) {
RED.nodes.registerType('FlowHubCfg', {
category: 'config',
hasUsers: false,
credentials: {
apiToken: { type: "text" },
tokens: { value: []}
},
defaults: {
apiTokenType: { type: "cred" },
fullname: { value: "" },
email: { value: "" },
flowid: { value: "" },
flowrevision: { value: "" },
notab: { value: false },
pushcomment: { value: "" },
pushnewflows: { value: false },
forcepush: { value: false },
flowrevisions: { value: {} }
},
label: 'FlowHubCfg',
});
})(jQuery);
</script>
<!-- The html for the config node info panel (in right sidebar) -->
<script type="text/x-red" data-template-name="FlowHubCfg">
This page is intentional left blank.
</script>