Files
automatisch/packages/backend/src/apps/google-sheets/common/auth-scope.js
2024-01-05 17:44:21 +01:00

9 lines
249 B
JavaScript

const authScope = [
'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;