Sign In

cloudelements-cmtool

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloudelements-cmtool - npm Package Compare versions

Comparing version
0.2.3
to
0.2.4
+13
-2
lib/jira.js
// Generated by LiveScript 1.3.1
(function(){
var async, hrequest, ref$, uformat, uparse, compact, find, groupBy, map, aes, wrapname, Jira;
var zenfield, async, hrequest, ref$, uformat, uparse, compact, find, groupBy, map, aes, wrapname, Jira;
zenfield = 'customfield_10709';
async = require('async');

@@ -18,3 +19,13 @@ hrequest = require('https').request;

prototype.formatStory = function(story){
return story.key + ": " + wrapname(story.fields.summary).substring(10);
var ref$, summary;
if ((ref$ = story.fields) != null && ref$[zenfield]) {
if (story.fields.summary) {
summary = story.fields.summary + (" (zendesk tickets: " + story.fields[zenfield] + ")");
} else {
summary = "(zendesk tickets: " + story.fields[zenfield] + ")";
}
return story.key + ": " + wrapname(summary).substring(10);
} else {
return story.key + ": " + wrapname(story.fields.summary).substring(10);
}
};

@@ -21,0 +32,0 @@ prototype.doneStories = function(ids, cb){

+1
-1
{
"name": "cloudelements-cmtool",
"version": "0.2.3",
"version": "0.2.4",
"description": "An integrated client for CE CM apps.",

@@ -5,0 +5,0 @@ "main": "lib/cmtool",

Sorry, the diff of this file is not supported yet