Skip to content

Commit

Permalink
draft proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Oct 8, 2024
1 parent 46a809b commit ceafe32
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/types/flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ export type FlagSet =
| "Works to trees & hedges"
| "Demolition in a conservation area"
| "Planning policy"
| "Community infrastructure levy";
| "Community infrastructure levy"
| "Material change of use";

export const DEFAULT_FLAG_CATEGORY: FlagSet = "Planning permission";

Expand Down Expand Up @@ -243,6 +244,20 @@ export const flatFlags: readonly Flag[] = [
category: "Community infrastructure levy",
value: "CO_NOT_LIABLE",
},
{
text: "Not material change of use",
bgColor: "#FF7F78",
color: "#000000",
category: "Material change of use",
value: "MCOU_FALSE",
},
{
text: "Material change of use",
bgColor: "#AAEB61",
color: "#000000",
category: "Material change of use",
value: "MCOU_TRUE",
},
] as const;

const flagValues = flatFlags.map((f) => f.value);
Expand Down

0 comments on commit ceafe32

Please sign in to comment.