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