type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Set issue navigator default columns
* Sets the default issue navigator columns.
*/
export async function main(auth: Jira, body: { columns?: string[] }) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/settings/columns`
);
const formData = new FormData();
for (const [k, v] of Object.entries(body)) {
if (v !== undefined && v !== "") {
formData.append(k, String(v));
}
}
const response = await fetch(url, {
method: "PUT",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: formData,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.text();
}
Submitted by hugo697 396 days ago
type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Set issue navigator default columns
* Sets the default issue navigator columns.
*/
export async function main(auth: Jira, body: { columns?: string[] }) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/settings/columns`
);
const formData = new FormData();
for (const [k, v] of Object.entries(body)) {
if (v !== undefined && v !== "") {
formData.append(k, String(v));
}
}
const response = await fetch(url, {
method: "PUT",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: formData,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.text();
}
Submitted by hugo697 823 days ago
type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Set issue navigator default columns
* Sets the default issue navigator columns.
*/
export async function main(auth: Jira) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/settings/columns`
);
const response = await fetch(url, {
method: "PUT",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 948 days ago