dry-wash-pl/src/__data__/features.ts
RustamRu 63d9d069c0
All checks were successful
it-academy/dry-wash-pl/pipeline/head This commit looks good
feat: add car image feature
2025-02-23 12:08:50 +03:00

18 lines
457 B
TypeScript

import { getFeatures } from "@brojs/cli";
const features = getFeatures('dry-wash');
export const FEATURE = {
orderViewStatusPolling: {
isOn: Boolean(features?.['order-view-status-polling']),
getValue: () => {
const interval = parseInt(features?.['order-view-status-polling']?.value);
if (!Number.isNaN(interval)) {
return interval;
}
}
},
carImageUpload: {
isOn: Boolean(features?.['car-img-upload'])
}
};