10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
const authScope: string[] = [
|
|
'offline_access',
|
|
'openid',
|
|
'profile',
|
|
'email',
|
|
'accounting.transactions',
|
|
];
|
|
|
|
export default authScope;
|