mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
export default class FinancialReportService {
|
|
transformOrganizationMeta(tenant) {
|
|
return {
|
|
organizationName: tenant.metadata?.name,
|
|
baseCurrency: tenant.metadata?.baseCurrency,
|
|
};
|
|
}
|
|
}
|