Files
automatisch/packages/backend/src/apps/google-forms/common/auth-scope.ts
2023-01-03 21:24:27 +01:00

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;