@@ -58,7 +58,7 @@ enum ActionObjectType: string
{
return match ($this) {
self::ASSET, self::PROJECT, self::TASK => "name",
- self::PLAN, self::REQUIREMENT => "title",
+ self::PLAN => "title", self::REQUIREMENT => "title",
default => "name",
};
}
@@ -7,4 +7,6 @@ use App\Models\Plan;
class PlanConverter extends ModelConverter
protected static string $modelClassName = Plan::class;
+
+ protected static string $pluckField = "title";