mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
13 lines
256 B
TypeScript
13 lines
256 B
TypeScript
import { Features, IFeatureConfiugration } from '@/interfaces';
|
|
|
|
export const FeaturesConfigure: IFeatureConfiugration[] = [
|
|
{
|
|
name: Features.BRANCHES,
|
|
defaultValue: false,
|
|
},
|
|
{
|
|
name: Features.WAREHOUSES,
|
|
defaultValue: false,
|
|
},
|
|
];
|