mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
20 lines
413 B
TypeScript
20 lines
413 B
TypeScript
import { Transformer } from '@/modules/Transformer/Transformer';
|
|
|
|
export class GetAuthedAccountTransformer extends Transformer {
|
|
/**
|
|
* Include these attributes to sale invoice object.
|
|
* @returns {Array}
|
|
*/
|
|
public includeAttributes = (): string[] => {
|
|
return [
|
|
'firstName',
|
|
'lastName',
|
|
'email',
|
|
'active',
|
|
'language',
|
|
'tenantId',
|
|
'verified',
|
|
];
|
|
};
|
|
}
|