mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
import { Inject, Service } from 'typedi';
|
|
import { GetOrganizationBrandingAttributes } from './GetOrganizationBrandingAttributes';
|
|
|
|
@Service()
|
|
export class GetPdfTemplateBrandingState {
|
|
@Inject()
|
|
private getOrgBrandingAttributes: GetOrganizationBrandingAttributes;
|
|
|
|
getBrandingState(tenantId: number) {
|
|
const brandingAttributes =
|
|
this.getOrgBrandingAttributes.getOrganizationBrandingAttributes(tenantId);
|
|
|
|
return brandingAttributes;
|
|
}
|
|
}
|