sclemmer-jira-ruby 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.travis.yml +6 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +46 -0
- data/README.rdoc +309 -0
- data/Rakefile +28 -0
- data/example.rb +119 -0
- data/http-basic-example.rb +112 -0
- data/lib/jira.rb +33 -0
- data/lib/jira/base.rb +497 -0
- data/lib/jira/base_factory.rb +49 -0
- data/lib/jira/client.rb +165 -0
- data/lib/jira/has_many_proxy.rb +43 -0
- data/lib/jira/http_client.rb +69 -0
- data/lib/jira/http_error.rb +16 -0
- data/lib/jira/oauth_client.rb +84 -0
- data/lib/jira/railtie.rb +10 -0
- data/lib/jira/request_client.rb +18 -0
- data/lib/jira/resource/attachment.rb +12 -0
- data/lib/jira/resource/comment.rb +14 -0
- data/lib/jira/resource/component.rb +10 -0
- data/lib/jira/resource/field.rb +10 -0
- data/lib/jira/resource/filter.rb +15 -0
- data/lib/jira/resource/issue.rb +80 -0
- data/lib/jira/resource/issuetype.rb +10 -0
- data/lib/jira/resource/priority.rb +10 -0
- data/lib/jira/resource/project.rb +31 -0
- data/lib/jira/resource/status.rb +10 -0
- data/lib/jira/resource/transition.rb +33 -0
- data/lib/jira/resource/user.rb +14 -0
- data/lib/jira/resource/version.rb +10 -0
- data/lib/jira/resource/worklog.rb +16 -0
- data/lib/jira/tasks.rb +0 -0
- data/lib/jira/version.rb +3 -0
- data/lib/tasks/generate.rake +18 -0
- data/sclemmer-jira-ruby.gemspec +28 -0
- data/spec/integration/attachment_spec.rb +23 -0
- data/spec/integration/comment_spec.rb +55 -0
- data/spec/integration/component_spec.rb +42 -0
- data/spec/integration/field_spec.rb +35 -0
- data/spec/integration/issue_spec.rb +94 -0
- data/spec/integration/issuetype_spec.rb +26 -0
- data/spec/integration/priority_spec.rb +27 -0
- data/spec/integration/project_spec.rb +56 -0
- data/spec/integration/status_spec.rb +27 -0
- data/spec/integration/transition_spec.rb +52 -0
- data/spec/integration/user_spec.rb +25 -0
- data/spec/integration/version_spec.rb +43 -0
- data/spec/integration/worklog_spec.rb +55 -0
- data/spec/jira/base_factory_spec.rb +46 -0
- data/spec/jira/base_spec.rb +583 -0
- data/spec/jira/client_spec.rb +188 -0
- data/spec/jira/has_many_proxy_spec.rb +47 -0
- data/spec/jira/http_client_spec.rb +109 -0
- data/spec/jira/http_error_spec.rb +26 -0
- data/spec/jira/oauth_client_spec.rb +111 -0
- data/spec/jira/request_client_spec.rb +14 -0
- data/spec/jira/resource/attachment_spec.rb +20 -0
- data/spec/jira/resource/filter_spec.rb +97 -0
- data/spec/jira/resource/issue_spec.rb +123 -0
- data/spec/jira/resource/project_factory_spec.rb +13 -0
- data/spec/jira/resource/project_spec.rb +70 -0
- data/spec/jira/resource/worklog_spec.rb +24 -0
- data/spec/mock_responses/attachment/10000.json +20 -0
- data/spec/mock_responses/component.post.json +28 -0
- data/spec/mock_responses/component/10000.invalid.put.json +5 -0
- data/spec/mock_responses/component/10000.json +39 -0
- data/spec/mock_responses/component/10000.put.json +39 -0
- data/spec/mock_responses/field.json +32 -0
- data/spec/mock_responses/field/1.json +15 -0
- data/spec/mock_responses/issue.json +1108 -0
- data/spec/mock_responses/issue.post.json +5 -0
- data/spec/mock_responses/issue/10002.invalid.put.json +6 -0
- data/spec/mock_responses/issue/10002.json +126 -0
- data/spec/mock_responses/issue/10002.put.missing_field_update.json +6 -0
- data/spec/mock_responses/issue/10002/comment.json +65 -0
- data/spec/mock_responses/issue/10002/comment.post.json +29 -0
- data/spec/mock_responses/issue/10002/comment/10000.json +29 -0
- data/spec/mock_responses/issue/10002/comment/10000.put.json +29 -0
- data/spec/mock_responses/issue/10002/transitions.json +49 -0
- data/spec/mock_responses/issue/10002/transitions.post.json +1 -0
- data/spec/mock_responses/issue/10002/worklog.json +98 -0
- data/spec/mock_responses/issue/10002/worklog.post.json +30 -0
- data/spec/mock_responses/issue/10002/worklog/10000.json +31 -0
- data/spec/mock_responses/issue/10002/worklog/10000.put.json +30 -0
- data/spec/mock_responses/issuetype.json +42 -0
- data/spec/mock_responses/issuetype/5.json +8 -0
- data/spec/mock_responses/priority.json +42 -0
- data/spec/mock_responses/priority/1.json +8 -0
- data/spec/mock_responses/project.json +12 -0
- data/spec/mock_responses/project/SAMPLEPROJECT.issues.json +1108 -0
- data/spec/mock_responses/project/SAMPLEPROJECT.json +84 -0
- data/spec/mock_responses/status.json +37 -0
- data/spec/mock_responses/status/1.json +7 -0
- data/spec/mock_responses/user_username=admin.json +17 -0
- data/spec/mock_responses/version.post.json +7 -0
- data/spec/mock_responses/version/10000.invalid.put.json +5 -0
- data/spec/mock_responses/version/10000.json +11 -0
- data/spec/mock_responses/version/10000.put.json +7 -0
- data/spec/spec_helper.rb +22 -0
- data/spec/support/clients_helper.rb +16 -0
- data/spec/support/matchers/have_attributes.rb +11 -0
- data/spec/support/matchers/have_many.rb +9 -0
- data/spec/support/matchers/have_one.rb +5 -0
- data/spec/support/shared_examples/integration.rb +194 -0
- metadata +302 -0
@@ -0,0 +1,126 @@
|
|
1
|
+
{
|
2
|
+
"expand": "renderedFields,names,schema,transitions,editmeta,changelog",
|
3
|
+
"id": "10002",
|
4
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002",
|
5
|
+
"key": "SAMPLEPROJECT-1",
|
6
|
+
"fields": {
|
7
|
+
"summary": "Sample Issue",
|
8
|
+
"progress": {
|
9
|
+
"progress": 0,
|
10
|
+
"total": 0
|
11
|
+
},
|
12
|
+
"timetracking": {},
|
13
|
+
"issuetype": {
|
14
|
+
"self": "http://localhost:2990/jira/rest/api/2/issuetype/3",
|
15
|
+
"id": "3",
|
16
|
+
"description": "A task that needs to be done.",
|
17
|
+
"iconUrl": "http://localhost:2990/jira/images/icons/task.gif",
|
18
|
+
"name": "Task",
|
19
|
+
"subtask": false
|
20
|
+
},
|
21
|
+
"votes": {
|
22
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/SAMPLEPROJECT-1/votes",
|
23
|
+
"votes": 0,
|
24
|
+
"hasVoted": false
|
25
|
+
},
|
26
|
+
"resolution": null,
|
27
|
+
"fixVersions": [],
|
28
|
+
"resolutiondate": null,
|
29
|
+
"timespent": null,
|
30
|
+
"reporter": {
|
31
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
32
|
+
"name": "admin",
|
33
|
+
"emailAddress": "admin@example.com",
|
34
|
+
"avatarUrls": {
|
35
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
36
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
37
|
+
},
|
38
|
+
"displayName": "admin",
|
39
|
+
"active": true
|
40
|
+
},
|
41
|
+
"aggregatetimeoriginalestimate": null,
|
42
|
+
"updated": "2011-12-14T10:26:06.030+1300",
|
43
|
+
"created": "2011-12-14T10:26:06.030+1300",
|
44
|
+
"description": null,
|
45
|
+
"priority": {
|
46
|
+
"self": "http://localhost:2990/jira/rest/api/2/priority/3",
|
47
|
+
"iconUrl": "http://localhost:2990/jira/images/icons/priority_major.gif",
|
48
|
+
"name": "Major",
|
49
|
+
"id": "3"
|
50
|
+
},
|
51
|
+
"duedate": "2011-12-14",
|
52
|
+
"issuelinks": [],
|
53
|
+
"watches": {
|
54
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/SAMPLEPROJECT-1/watchers",
|
55
|
+
"watchCount": 0,
|
56
|
+
"isWatching": false
|
57
|
+
},
|
58
|
+
"worklog": {
|
59
|
+
"startAt": 0,
|
60
|
+
"maxResults": 0,
|
61
|
+
"total": 0,
|
62
|
+
"worklogs": []
|
63
|
+
},
|
64
|
+
"subtasks": [],
|
65
|
+
"status": {
|
66
|
+
"self": "http://localhost:2990/jira/rest/api/2/status/1",
|
67
|
+
"description": "The issue is open and ready for the assignee to start work on it.",
|
68
|
+
"iconUrl": "http://localhost:2990/jira/images/icons/status_open.gif",
|
69
|
+
"name": "Open",
|
70
|
+
"id": "1"
|
71
|
+
},
|
72
|
+
"labels": [],
|
73
|
+
"workratio": -1,
|
74
|
+
"assignee": {
|
75
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
76
|
+
"name": "admin",
|
77
|
+
"emailAddress": "admin@example.com",
|
78
|
+
"avatarUrls": {
|
79
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
80
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
81
|
+
},
|
82
|
+
"displayName": "admin",
|
83
|
+
"active": true
|
84
|
+
},
|
85
|
+
"attachment": [],
|
86
|
+
"aggregatetimeestimate": null,
|
87
|
+
"project": {
|
88
|
+
"self": "http://localhost:2990/jira/rest/api/2/project/SAMPLEPROJECT",
|
89
|
+
"id": "10001",
|
90
|
+
"key": "SAMPLEPROJECT",
|
91
|
+
"name": "Sample Project for Developing RoR RESTful API",
|
92
|
+
"avatarUrls": {
|
93
|
+
"16x16": "http://localhost:2990/jira/secure/projectavatar?size=small&pid=10001&avatarId=10011",
|
94
|
+
"48x48": "http://localhost:2990/jira/secure/projectavatar?pid=10001&avatarId=10011"
|
95
|
+
}
|
96
|
+
},
|
97
|
+
"versions": [],
|
98
|
+
"environment": null,
|
99
|
+
"timeestimate": null,
|
100
|
+
"aggregateprogress": {
|
101
|
+
"progress": 0,
|
102
|
+
"total": 0
|
103
|
+
},
|
104
|
+
"components": [
|
105
|
+
{
|
106
|
+
"self": "http://localhost:2990/jira/rest/api/2/component/10001",
|
107
|
+
"id": "10001",
|
108
|
+
"name": "Jamflam"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"self": "http://localhost:2990/jira/rest/api/2/component/10000",
|
112
|
+
"id": "10000",
|
113
|
+
"name": "Jammy",
|
114
|
+
"description": "Description!"
|
115
|
+
}
|
116
|
+
],
|
117
|
+
"comment": {
|
118
|
+
"startAt": 0,
|
119
|
+
"maxResults": 0,
|
120
|
+
"total": 0,
|
121
|
+
"comments": []
|
122
|
+
},
|
123
|
+
"timeoriginalestimate": null,
|
124
|
+
"aggregatetimespent": null
|
125
|
+
}
|
126
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
{
|
2
|
+
"startAt": 0,
|
3
|
+
"maxResults": 2,
|
4
|
+
"total": 2,
|
5
|
+
"comments": [
|
6
|
+
{
|
7
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/comment/10000",
|
8
|
+
"id": "10000",
|
9
|
+
"author": {
|
10
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
11
|
+
"name": "admin",
|
12
|
+
"emailAddress": "admin@example.com",
|
13
|
+
"avatarUrls": {
|
14
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
15
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
16
|
+
},
|
17
|
+
"displayName": "admin",
|
18
|
+
"active": true
|
19
|
+
},
|
20
|
+
"body": "This is a comment. Creative.",
|
21
|
+
"updateAuthor": {
|
22
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
23
|
+
"name": "admin",
|
24
|
+
"emailAddress": "admin@example.com",
|
25
|
+
"avatarUrls": {
|
26
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
27
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
28
|
+
},
|
29
|
+
"displayName": "admin",
|
30
|
+
"active": true
|
31
|
+
},
|
32
|
+
"created": "2012-01-11T10:02:14.430+1300",
|
33
|
+
"updated": "2012-01-12T15:15:13.074+1300"
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/comment/10001",
|
37
|
+
"id": "10001",
|
38
|
+
"author": {
|
39
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
40
|
+
"name": "admin",
|
41
|
+
"emailAddress": "admin@example.com",
|
42
|
+
"avatarUrls": {
|
43
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
44
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
45
|
+
},
|
46
|
+
"displayName": "admin",
|
47
|
+
"active": true
|
48
|
+
},
|
49
|
+
"body": "new comment",
|
50
|
+
"updateAuthor": {
|
51
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
52
|
+
"name": "admin",
|
53
|
+
"emailAddress": "admin@example.com",
|
54
|
+
"avatarUrls": {
|
55
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
56
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
57
|
+
},
|
58
|
+
"displayName": "admin",
|
59
|
+
"active": true
|
60
|
+
},
|
61
|
+
"created": "2012-01-12T14:29:59.209+1300",
|
62
|
+
"updated": "2012-01-12T14:29:59.209+1300"
|
63
|
+
}
|
64
|
+
]
|
65
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/comment/10001",
|
3
|
+
"id": "10001",
|
4
|
+
"author": {
|
5
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
6
|
+
"name": "admin",
|
7
|
+
"emailAddress": "admin@example.com",
|
8
|
+
"avatarUrls": {
|
9
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
10
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
11
|
+
},
|
12
|
+
"displayName": "admin",
|
13
|
+
"active": true
|
14
|
+
},
|
15
|
+
"body": "new comment",
|
16
|
+
"updateAuthor": {
|
17
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
18
|
+
"name": "admin",
|
19
|
+
"emailAddress": "admin@example.com",
|
20
|
+
"avatarUrls": {
|
21
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
22
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
23
|
+
},
|
24
|
+
"displayName": "admin",
|
25
|
+
"active": true
|
26
|
+
},
|
27
|
+
"created": "2012-01-12T14:29:59.209+1300",
|
28
|
+
"updated": "2012-01-12T14:29:59.209+1300"
|
29
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/comment/10000",
|
3
|
+
"id": "10000",
|
4
|
+
"author": {
|
5
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
6
|
+
"name": "admin",
|
7
|
+
"emailAddress": "admin@example.com",
|
8
|
+
"avatarUrls": {
|
9
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
10
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
11
|
+
},
|
12
|
+
"displayName": "admin",
|
13
|
+
"active": true
|
14
|
+
},
|
15
|
+
"body": "This is a comment. Creative.",
|
16
|
+
"updateAuthor": {
|
17
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
18
|
+
"name": "admin",
|
19
|
+
"emailAddress": "admin@example.com",
|
20
|
+
"avatarUrls": {
|
21
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
22
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
23
|
+
},
|
24
|
+
"displayName": "admin",
|
25
|
+
"active": true
|
26
|
+
},
|
27
|
+
"created": "2012-01-11T10:02:14.430+1300",
|
28
|
+
"updated": "2012-01-11T10:02:14.430+1300"
|
29
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{
|
2
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/comment/10000",
|
3
|
+
"id": "10000",
|
4
|
+
"author": {
|
5
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
6
|
+
"name": "admin",
|
7
|
+
"emailAddress": "admin@example.com",
|
8
|
+
"avatarUrls": {
|
9
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
10
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
11
|
+
},
|
12
|
+
"displayName": "admin",
|
13
|
+
"active": true
|
14
|
+
},
|
15
|
+
"body": "new body",
|
16
|
+
"updateAuthor": {
|
17
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
18
|
+
"name": "admin",
|
19
|
+
"emailAddress": "admin@example.com",
|
20
|
+
"avatarUrls": {
|
21
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
22
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
23
|
+
},
|
24
|
+
"displayName": "admin",
|
25
|
+
"active": true
|
26
|
+
},
|
27
|
+
"created": "2012-01-11T10:02:14.430+1300",
|
28
|
+
"updated": "2012-01-12T14:37:41.933+1300"
|
29
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
{
|
2
|
+
"expand": "transitions",
|
3
|
+
"transitions": [
|
4
|
+
{
|
5
|
+
"id": "41",
|
6
|
+
"name": "Review",
|
7
|
+
"to": {
|
8
|
+
"self": "http://localhost:2990/rest/api/2/status/10006",
|
9
|
+
"description": "",
|
10
|
+
"iconUrl": "http://localhost:2990/images/icons/statuses/generic.png",
|
11
|
+
"name": "Reviewable",
|
12
|
+
"id": "10006"
|
13
|
+
}
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"id": "101",
|
17
|
+
"name": "Stop Progress",
|
18
|
+
"to": {
|
19
|
+
"self": "http://localhost:2990/rest/api/2/status/10017",
|
20
|
+
"description": "Mapping for Accepted in Pivotal Tracker",
|
21
|
+
"iconUrl": "http://localhost:2990/images/icons/statuses/closed.png",
|
22
|
+
"name": "Accepted",
|
23
|
+
"id": "10017"
|
24
|
+
}
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"id": "21",
|
28
|
+
"name": "Remove from Backlog",
|
29
|
+
"to": {
|
30
|
+
"self": "http://localhost:2990/rest/api/2/status/1",
|
31
|
+
"description": "The issue is open and ready for the assignee to start work on it.",
|
32
|
+
"iconUrl": "http://localhost:2990/images/icons/statuses/open.png",
|
33
|
+
"name": "Open",
|
34
|
+
"id": "1"
|
35
|
+
}
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"id": "71",
|
39
|
+
"name": "Resolve",
|
40
|
+
"to": {
|
41
|
+
"self": "http://localhost:2990/rest/api/2/status/5",
|
42
|
+
"description": "A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.",
|
43
|
+
"iconUrl": "http://localhost:2990/images/icons/statuses/resolved.png",
|
44
|
+
"name": "Resolved",
|
45
|
+
"id": "5"
|
46
|
+
}
|
47
|
+
}
|
48
|
+
]
|
49
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,98 @@
|
|
1
|
+
{
|
2
|
+
"startAt": 0,
|
3
|
+
"maxResults": 3,
|
4
|
+
"total": 3,
|
5
|
+
"worklogs": [
|
6
|
+
{
|
7
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10000",
|
8
|
+
"author": {
|
9
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
10
|
+
"name": "admin",
|
11
|
+
"emailAddress": "admin@example.com",
|
12
|
+
"avatarUrls": {
|
13
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
14
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
15
|
+
},
|
16
|
+
"displayName": "admin",
|
17
|
+
"active": true
|
18
|
+
},
|
19
|
+
"updateAuthor": {
|
20
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
21
|
+
"name": "admin",
|
22
|
+
"emailAddress": "admin@example.com",
|
23
|
+
"avatarUrls": {
|
24
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
25
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
26
|
+
},
|
27
|
+
"displayName": "admin",
|
28
|
+
"active": true
|
29
|
+
},
|
30
|
+
"comment": "Some epic work.",
|
31
|
+
"created": "2012-01-11T13:33:25.604+1300",
|
32
|
+
"updated": "2012-01-11T13:33:25.604+1300",
|
33
|
+
"started": "2012-01-11T13:33:00.000+1300",
|
34
|
+
"timeSpent": "18w 2d",
|
35
|
+
"id": "10000"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10001",
|
39
|
+
"author": {
|
40
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
41
|
+
"name": "admin",
|
42
|
+
"emailAddress": "admin@example.com",
|
43
|
+
"avatarUrls": {
|
44
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
45
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
46
|
+
},
|
47
|
+
"displayName": "admin",
|
48
|
+
"active": true
|
49
|
+
},
|
50
|
+
"updateAuthor": {
|
51
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
52
|
+
"name": "admin",
|
53
|
+
"emailAddress": "admin@example.com",
|
54
|
+
"avatarUrls": {
|
55
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
56
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
57
|
+
},
|
58
|
+
"displayName": "admin",
|
59
|
+
"active": true
|
60
|
+
},
|
61
|
+
"created": "2012-01-12T16:08:58.529+1300",
|
62
|
+
"updated": "2012-01-12T16:11:22.266+1300",
|
63
|
+
"started": "2012-01-12T16:08:58.529+1300",
|
64
|
+
"timeSpent": "4d",
|
65
|
+
"id": "10001"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10002",
|
69
|
+
"author": {
|
70
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
71
|
+
"name": "admin",
|
72
|
+
"emailAddress": "admin@example.com",
|
73
|
+
"avatarUrls": {
|
74
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
75
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
76
|
+
},
|
77
|
+
"displayName": "admin",
|
78
|
+
"active": true
|
79
|
+
},
|
80
|
+
"updateAuthor": {
|
81
|
+
"self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
|
82
|
+
"name": "admin",
|
83
|
+
"emailAddress": "admin@example.com",
|
84
|
+
"avatarUrls": {
|
85
|
+
"16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
|
86
|
+
"48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
|
87
|
+
},
|
88
|
+
"displayName": "admin",
|
89
|
+
"active": true
|
90
|
+
},
|
91
|
+
"created": "2012-01-12T16:20:39.542+1300",
|
92
|
+
"updated": "2012-01-12T16:20:39.542+1300",
|
93
|
+
"started": "2012-01-12T16:20:39.541+1300",
|
94
|
+
"timeSpent": "3d",
|
95
|
+
"id": "10002"
|
96
|
+
}
|
97
|
+
]
|
98
|
+
}
|