aboutsummaryrefslogtreecommitdiff
path: root/src/server/apis/google/GoogleApiServerUtils.ts
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-10-09 15:13:28 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-10-09 15:13:28 -0400
commit7763ddefcd14986573f9a0010c7691fa4715b94e (patch)
tree854c58308c524c7ab185374219300e1172a93cb4 /src/server/apis/google/GoogleApiServerUtils.ts
parent33841ef7ca23348dd03017768504e536cf567177 (diff)
semicolons
Diffstat (limited to 'src/server/apis/google/GoogleApiServerUtils.ts')
-rw-r--r--src/server/apis/google/GoogleApiServerUtils.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/apis/google/GoogleApiServerUtils.ts b/src/server/apis/google/GoogleApiServerUtils.ts
index 2f29cb95f..963c7736a 100644
--- a/src/server/apis/google/GoogleApiServerUtils.ts
+++ b/src/server/apis/google/GoogleApiServerUtils.ts
@@ -86,7 +86,7 @@ export namespace GoogleApiServerUtils {
resolve(new google.auth.OAuth2(client_id, client_secret, redirect_uris[0]));
});
});
- }
+ };
export const GenerateAuthenticationUrl = async (information: CredentialInformation) => {
const client = await RetrieveOAuthClient(information);
@@ -109,7 +109,7 @@ export namespace GoogleApiServerUtils {
resolve({ token, client: oAuth2Client });
});
});
- }
+ };
export const RetrieveCredentials = (information: CredentialInformation) => {
return new Promise<TokenResult>((resolve, reject) => {