Edits history of script submission #1464 for ' Delete an explicit group permission for a project (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * Delete an explicit group permission for a project
     * Deletes the project group permission between the requested project and group, if one exists.
    
    Only users with admin permission for the project may access this resource.
     */
    export async function main(
      auth: Bitbucket,
      group_slug: string,
      project_key: string,
      workspace: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/workspaces/${workspace}/projects/${project_key}/permissions-config/groups/${group_slug}`
      );
    
      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 375 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * Delete an explicit group permission for a project
     * Deletes the project group permission between the requested project and group, if one exists.
    
    Only users with admin permission for the project may access this resource.
     */
    export async function main(
      auth: Bitbucket,
      group_slug: string,
      project_key: string,
      workspace: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/workspaces/${workspace}/projects/${project_key}/permissions-config/groups/${group_slug}`
      );
    
      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 935 days ago