Product Development & Management, Business Development & Partnerships, Branding, Finance & Accounting, Fundraising, Talent & Human Resources, International Development, Leadership/ Management, Digital Marketing, Operations, Legal, Sales, Engineering, Growth Hacking, Public Relations, Data Science, Go-to-market Strategy, UX Design
<script>
var data = await jQuery.ajax({
url: "/rest/scriptrunner/latest/custom/searchJiraTicketsPaginated",
headers: {
'X-Atlassian-Token' : 'nocheck'
<script>
var data = await 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 status = Submitted AND resolution = Unresolved AND cf[10634] ~ 'approved' ORDER BY priority DESC, updated DESC",
"startAt": 0,
'Content-type' : 'application/json'
"maxResults": 4
}
,
)}).then(res
type: "POST",
dataType: 'json',
data: JSON.stringify({
"jql": "project = PGH AND status = Submitted AND resolution = Unresolved AND cf[10634] ~ 'approved' ORDER BY priority DESC, updated DESC",
"startAt": 0,
"maxResults": 4
})
}).then(res => res);
console.log("mazin")
for(let i = 0; i < data.issues.length; i++){
let title = data.issues[i]['fields']['customfield_10108'];
let summary = data.issues[i]['fields']['customfield_10226'];
console.log(title, summary)
}
</script>
=> res);
console.log("mazin")
for(let i = 0; i < data.issues.length; i++){
let title = data.issues[i]['fields']['customfield_10108'];
let summary = data.issues[i]['fields']['customfield_10226'];
console.log(title, summary)
}
</script>