type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Get comments by IDs
* Returns a [paginated](#pagination) list of comments specified by a list of comment IDs.
*/
export async function main(
auth: Jira,
expand: string | undefined,
body: { ids: number[] }
) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/comment/list`
);
for (const [k, v] of [["expand", expand]]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 396 days ago
type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Get comments by IDs
* Returns a [paginated](#pagination) list of comments specified by a list of comment IDs.
*/
export async function main(
auth: Jira,
expand: string | undefined,
body: { ids: number[] }
) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/comment/list`
);
for (const [k, v] of [["expand", expand]]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 948 days ago