@gregoriusrippenstein/node-red-contrib-flowhub
Version:
FlowHub.org: flow management with GitHub.
29 lines (27 loc) • 817 B
HTML
<script type="text/javascript">
(function ($) {
RED.nodes.registerType('FlowHubCfg', {
category: 'config',
hasUsers: false,
defaults: {
apiToken: { value: "" },
apiTokenType: { value: "" },
fullname: { value: "" },
email: { value: "" },
flowid: { value: "" },
flowrevision: { value: "" },
notab: { value: false },
pushcomment: { value: "" },
pushnewflows: { value: false },
forcepush: { value: false },
tokens: { value: [] },
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>