Files
automatisch/packages/backend/src/apps/youtube/common/auth-scope.ts
2023-10-16 16:27:17 +03:00

10 lines
317 B
TypeScript

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