type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Remove modules
* Remove all or a list of modules registered by the calling app.
**[Permissions](#permissions) required:** Only Connect apps can make this request.
*/
export async function main(auth: Jira, moduleKey: string | undefined) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/atlassian-connect/1/app/module/dynamic`
);
for (const [k, v] of [["moduleKey", moduleKey]]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "DELETE",
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.text();
}
Submitted by hugo697 396 days ago
type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Remove modules
* Remove all or a list of modules registered by the calling app.
**[Permissions](#permissions) required:** Only Connect apps can make this request.
*/
export async function main(auth: Jira, moduleKey: string | undefined) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/atlassian-connect/1/app/module/dynamic`
);
for (const [k, v] of [["moduleKey", moduleKey]]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "DELETE",
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.text();
}
Submitted by hugo697 948 days ago