Files
automatisch/packages/backend/src/apps/xero/common/auth-scope.ts
2023-11-08 17:03:33 +03:00

10 lines
145 B
TypeScript

const authScope: string[] = [
'offline_access',
'openid',
'profile',
'email',
'accounting.transactions',
];
export default authScope;