Edits history of script submission #63 for ' Update Shared Drive (gdrive)'

  • deno
    type Gdrive = {
      token: string;
    };
    export async function main(
      gdrive_auth: Gdrive,
      driveId: string,
      useDomainAdminAccess: boolean = true,
    ) {
      const UPDATE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
    
      const token = gdrive_auth["token"];
    
      const body = {
        name: "Update Drive Test",
        restrictions: {
          adminManagedRestrictions: false,
          copyRequiresWriterPermission: false,
          domainUsersOnly: false,
          driveMembersOnly: false,
        },
        colorRgb: "#ff0000",
      };
      const response = await fetch(UPDATE_SHARED_DRIVE_URL, {
        method: "PATCH",
        body: JSON.stringify(body),
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.text();
    }
    

    Submitted by hugo697 398 days ago

  • deno
    type Gdrive = {
      token: string;
    };
    export async function main(
      gdrive_auth: Gdrive,
      driveId: string,
      useDomainAdminAccess: boolean = true,
    ) {
      const UPDATE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
    
      const token = gdrive_auth["token"];
    
      const body = {
        name: "Update Drive Test",
        restrictions: {
          adminManagedRestrictions: false,
          copyRequiresWriterPermission: false,
          domainUsersOnly: false,
          driveMembersOnly: false,
        },
        colorRgb: "#ff0000",
      };
      const response = await fetch(UPDATE_SHARED_DRIVE_URL, {
        method: "PATCH",
        body: JSON.stringify(body),
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.text();
    }
    

    Submitted by admin 1031 days ago

  • deno
    
    type Gdrive = {
      token: string;
    };
    export async function main(
        gdrive_auth: Gdrive,
        driveId: string,
        useDomainAdminAccess: boolean = true,
    ) {
        const UPDATE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
    
        const token = gdrive_auth["token"];
    
        const body = {
            "name": "Update Drive Test",
            "restrictions": {
                "adminManagedRestrictions": false,
                "copyRequiresWriterPermission": false,
                "domainUsersOnly": false,
                "driveMembersOnly": false
            },
            "colorRgb": "#ff0000"
        };
        const response = await fetch(UPDATE_SHARED_DRIVE_URL, {
            method: "PATCH",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by admin 1034 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(
        gdrive_auth: wmill.Resource<"gdrive">,
        driveId: string,
        useDomainAdminAccess: boolean = true,
    ) {
        const UPDATE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
    
        const token = gdrive_auth["token"];
    
        const body = {
            "name": "Update Drive Test",
            "restrictions": {
                "adminManagedRestrictions": false,
                "copyRequiresWriterPermission": false,
                "domainUsersOnly": false,
                "driveMembersOnly": false
            },
            "colorRgb": "#ff0000"
        };
        const response = await fetch(UPDATE_SHARED_DRIVE_URL, {
            method: "PATCH",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by adam186 1162 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(
        gdrive_auth: wmill.Resource<"gdrive">,
        driveId: string,
        useDomainAdminAccess: boolean = true,
    ) {
        const UPDATE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
    
        const token = gdrive_auth["token"];
    
        const body = {
            "name": "Update Drive Test",
            "restrictions": {
                "adminManagedRestrictions": false,
                "copyRequiresWriterPermission": false,
                "domainUsersOnly": false,
                "driveMembersOnly": false
            },
            "colorRgb": "#ff0000"
        };
        const response = await fetch(UPDATE_SHARED_DRIVE_URL, {
            method: "PATCH",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by adam186 1197 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    
    export async function main(
        gdrive_auth: wmill.Resource<"gdrive">,
        driveId: string,
        useDomainAdminAccess: boolean = true,
    ) {
        const UPDATE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?useDomainAdminAccess=${useDomainAdminAccess}`;
    
        const token = gdrive_auth["token"];
    
        const body = {
            "name": "Update Drive Test",
            "restrictions": {
                "adminManagedRestrictions": false,
                "copyRequiresWriterPermission": false,
                "domainUsersOnly": false,
                "driveMembersOnly": false
            },
            "colorRgb": "#ff0000"
        };
        const response = await fetch(UPDATE_SHARED_DRIVE_URL, {
            method: "PATCH",
            body: JSON.stringify(body),
            headers: {
                Authorization: "Bearer " + token,
                "Content-Type": "application/json",
            },
        });
    
        return await response.text();
    }

    Submitted by rossmccrann 1413 days ago