dashpresshq/dashpress

View on GitHub
src/shared/config-bag/integrations.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import type { IntegrationsConfigurationGroup } from "@/shared/types/integrations";

export const INTEGRATIONS_GROUP_CONFIG: Record<
  IntegrationsConfigurationGroup,
  { prefix: string }
> = {
  constants: {
    prefix: "CONSTANT",
  },
  env: {
    prefix: "ENV",
  },
  credentials: {
    prefix: "SECRET",
  },
};