apps-script-samples icon indicating copy to clipboard operation
apps-script-samples copied to clipboard

Update adminSDK.gs

Open JonathanTylerCombs opened this issue 1 year ago • 2 comments

Description

Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

Fixes # (issue)

Is it been tested?

  • [x] Development testing done

Checklist

  • [ ] My code follows the style guidelines of this project
  • [ ] I have performed a self-review of my own code
  • [ ] I have performed a peer-reviewed with team member(s)
  • [ ] I have commented my code, particularly in hard-to-understand areas
  • [ ] I have made corresponding changes to the documentation
  • [ ] My changes generate no new warnings
  • [ ] Any dependent changes have been merged and published in downstream modules

JonathanTylerCombs avatar Jul 04 '24 04:07 JonathanTylerCombs

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

google-cla[bot] avatar Jul 04 '24 04:07 google-cla[bot]

From 80eef583858ad4f4c5263b7d08cf82ff3066bf31 Mon Sep 17 00:00:00 2001 From: Jonathan Combs [email protected] Date: Thu, 4 Jul 2024 00:37:55 -0400 Subject: [PATCH] Update adminSDK.gs


 advanced/adminSDK.gs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/advanced/adminSDK.gs b/advanced/adminSDK.gs
index c0aed633d..d3df86e98 100644
--- a/advanced/adminSDK.gs
+++ b/advanced/adminSDK.gs
@@ -443,6 +443,7 @@ function getSubscriptions() {
   do {
     result = AdminReseller.Subscriptions.list({
       pageToken: pageToken
+
     });
     for (const sub of result.subscriptions) {
       const creationDate = new Date();
@@ -455,3 +456,4 @@ function getSubscriptions() {
   } while (pageToken);
 }
 // [END apps_script_admin_sdk_get_subscriptions]
+https://github.com/JonathanTylerCombs

myHerbDev avatar Aug 08 '24 23:08 myHerbDev