x
x
x
x
Only portrait mode is currently supported - please rotate your device.
...
Custom section | ||||
---|---|---|---|---|
| ||||
|
HTML |
---|
<script>
var data_fields = [];
jQuery.ajax({
url: "/rest/scriptrunner/latest/custom/searchJiraTicketsPaginated",
headers: {
'X-Atlassian-Token' : 'nocheck',
'Content-type' : 'application/json'
},
type: "POST",
dataType: 'json',
data: JSON.stringify({
"jql": "project = PGH AND issue = " + new URLSearchParams(window.location.search).get('company'),
"startAt": 0,
"maxResults": 1
}),
success: function(data){
data_fields.append(data.issues[0]['fields']['customfield_10108']);
}
});
</script> |
Custom section | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
...
OneValley