diff --git a/app/blueprints/services/models/fund.py b/app/blueprints/services/models/fund.py index 0b313e8e..abf780f6 100644 --- a/app/blueprints/services/models/fund.py +++ b/app/blueprints/services/models/fund.py @@ -33,12 +33,15 @@ def from_json(data: dict): ), ) + # TODO: Move this config to database @property def fund_types(self) -> set[str]: if self.short_name == "COF": return {ALL_VALUE, "allocative"} elif self.short_name == "NSTF": return {ALL_VALUE, "allocative"} + elif self.short_name == "CYP": + return {ALL_VALUE, "competitive"} return {ALL_VALUE} def add_round(self, fund_round: Round):