type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Get bulk permissions
* Returns:
* for a list of global permissions, the global permissions granted to a user.
*/
export async function main(
auth: Jira,
body: {
accountId?: string;
globalPermissions?: string[];
projectPermissions?: {
issues?: number[];
permissions: string[];
projects?: number[];
}[];
}
) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/permissions/check`
);
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 bulk permissions
* Returns:
* for a list of global permissions, the global permissions granted to a user.
*/
export async function main(
auth: Jira,
body: {
accountId?: string;
globalPermissions?: string[];
projectPermissions?: {
issues?: number[];
permissions: string[];
projects?: number[];
}[];
}
) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/permissions/check`
);
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