type Github = {
token: string;
};
/**
* Set public organization membership for the authenticated user
* The user can publicize their own membership. (A user cannot publicize the membership for another user.)
Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP verbs](https://docs.github.com/rest/overview/resources-in-the-rest-api#http-verbs)."
*/
export async function main(auth: Github, org: string, username: string) {
const url = new URL(
`https://api.github.com/orgs/${org}/public_members/${username}`
);
const response = await fetch(url, {
method: "PUT",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.text();
}
Submitted by hugo697 367 days ago
type Github = {
token: string;
};
/**
* Set public organization membership for the authenticated user
* The user can publicize their own membership. (A user cannot publicize the membership for another user.)
Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see "[HTTP verbs](https://docs.github.com/rest/overview/resources-in-the-rest-api#http-verbs)."
*/
export async function main(auth: Github, org: string, username: string) {
const url = new URL(
`https://api.github.com/orgs/${org}/public_members/${username}`
);
const response = await fetch(url, {
method: "PUT",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.text();
}
Submitted by hugo697 927 days ago