10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
const authScope: string[] = [
|
|
'https://www.googleapis.com/auth/forms.body.readonly',
|
|
'https://www.googleapis.com/auth/forms.responses.readonly',
|
|
'https://www.googleapis.com/auth/drive.readonly',
|
|
'https://www.googleapis.com/auth/userinfo.email',
|
|
'profile',
|
|
];
|
|
|
|
export default authScope;
|