Files
automatisch/packages/backend/src/apps/google-sheet/common/auth-scope.ts
2023-04-06 17:12:41 +03:00

9 lines
259 B
TypeScript

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