feat(google-forms): add authentication

This commit is contained in:
Ali BARIN
2023-01-03 19:06:04 +01:00
parent f8df7987b8
commit 3fc7fce9ca
9 changed files with 200 additions and 0 deletions

View File

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