Files
automatisch/packages/backend/src/apps/google-forms/common/auth-scope.ts
2023-01-03 19:06:04 +01:00

9 lines
234 B
TypeScript

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;