Files
automatisch/packages/backend/src/apps/google-drive/common/auth-scope.ts
2023-03-23 19:10:43 +03:00

8 lines
209 B
TypeScript

const authScope: string[] = [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/userinfo.email',
'https://www.googleapis.com/auth/userinfo.profile',
];
export default authScope;