Files
bigcapital/packages/server/src/services/Features/constants.ts
2023-02-03 11:57:50 +02:00

13 lines
256 B
TypeScript

import { Features, IFeatureConfiugration } from '@/interfaces';
export const FeaturesConfigure: IFeatureConfiugration[] = [
{
name: Features.BRANCHES,
defaultValue: false,
},
{
name: Features.WAREHOUSES,
defaultValue: false,
},
];