Files
automatisch/packages/backend/src/apps/google-calendar/common/auth-scope.ts
2023-09-18 15:12:29 +03:00

8 lines
212 B
TypeScript

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