@@ -248,7 +248,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
248
248
// * count: count of unresolved issues for requested version
249
249
//
250
250
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id288524)
251
-
252
251
this . getUnresolvedIssueCount = function ( version , callback ) {
253
252
var options = {
254
253
rejectUnauthorized : this . strictSSL ,
@@ -290,7 +289,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
290
289
// * project: the json object representing the entire project
291
290
//
292
291
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id289232)
293
-
294
292
this . getProject = function ( project , callback ) {
295
293
296
294
var options = {
@@ -609,7 +607,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
609
607
// * versions: array of the versions for a product
610
608
//
611
609
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id289653)
612
-
613
610
this . getVersions = function ( project , callback ) {
614
611
615
612
var options = {
@@ -782,7 +779,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
782
779
// * issues: array of issues for the user
783
780
//
784
781
// [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id333082)
785
- //
786
782
this . searchJira = function ( searchString , optional , callback ) {
787
783
// backwards compatibility
788
784
optional = optional || { } ;
@@ -947,17 +943,18 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
947
943
948
944
} ) ;
949
945
} ;
950
- // ## Delete issue to Jira ##
951
- // ### Takes ###
952
- //
953
- // * issueId: the Id of the issue to delete
954
- // * callback: for when it's done
955
- //
956
- // ### Returns ###
957
- // * error string
958
- // * success object
959
- //
960
- // [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id290791)
946
+
947
+ // ## Delete issue to Jira ##
948
+ // ### Takes ###
949
+ //
950
+ // * issueId: the Id of the issue to delete
951
+ // * callback: for when it's done
952
+ //
953
+ // ### Returns ###
954
+ // * error string
955
+ // * success object
956
+ //
957
+ // [Jira Doc](http://docs.atlassian.com/jira/REST/latest/#id290791)
961
958
this . deleteIssue = function ( issueNum , callback ) {
962
959
var options = {
963
960
rejectUnauthorized : this . strictSSL ,
@@ -983,6 +980,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
983
980
984
981
} ) ;
985
982
} ;
983
+
986
984
// ## Update issue in Jira ##
987
985
// ### Takes ###
988
986
//
@@ -1262,6 +1260,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
1262
1260
1263
1261
} ) ;
1264
1262
} ;
1263
+
1265
1264
// ## Transition issue in Jira ##
1266
1265
// ### Takes ###
1267
1266
//
@@ -1352,6 +1351,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
1352
1351
1353
1352
} ) ;
1354
1353
} ;
1354
+
1355
1355
// ## Add a comment to an issue ##
1356
1356
// ### Takes ###
1357
1357
// * issueId: Issue to add a comment to
@@ -1392,6 +1392,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
1392
1392
}
1393
1393
} ) ;
1394
1394
} ;
1395
+
1395
1396
// ## Add a worklog to a project ##
1396
1397
// ### Takes ###
1397
1398
// * issueId: Issue to add a worklog to
@@ -1468,6 +1469,7 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
1468
1469
1469
1470
} ) ;
1470
1471
} ;
1472
+
1471
1473
// ## List all Issue Types ##
1472
1474
// ### Takes ###
1473
1475
//
@@ -1688,7 +1690,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
1688
1690
} ) ;
1689
1691
} ;
1690
1692
1691
-
1692
1693
// ## Describe the currently authenticated user ##
1693
1694
// ### Takes ###
1694
1695
//
@@ -1713,7 +1714,6 @@ var JiraApi = exports.JiraApi = function(protocol, host, port, username, passwor
1713
1714
* }
1714
1715
* }
1715
1716
*/
1716
-
1717
1717
this . getCurrentUser = function ( callback ) {
1718
1718
var options = {
1719
1719
rejectUnauthorized : this . strictSSL ,
0 commit comments