feat(google-sheets): add google sheets integration

This commit is contained in:
Rıdvan Akca
2023-03-31 14:17:47 +03:00
parent 3e268bf66b
commit f88f05cd46
11 changed files with 298 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
const authScope: string[] = [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/spreadsheets',
'https://www.googleapis.com/auth/userinfo.email',
'https://www.googleapis.com/auth/userinfo.profile',
];
export default authScope;