# Project Feature Toggles # Enable or disable features for this project. # Changes here are applied when you run `plane schema push`. # # Data gating: cycles/modules data is only pushed when the flag is true. # Set a flag to false to disable the feature AND skip pushing its data. # # Available features: # cycles — time-boxed sprints / iterations # modules — group work items by feature area # pages — collaborative wiki pages # views — saved filtered views # intakes — public intake / triage form # epics — hierarchical parent work items # work_item_types — custom work item type definitions # workflows — state-machine workflow rules # parallel_cycles — allow multiple active cycles simultaneously # manually_start_end_cycles — manually control cycle start/end instead of automatic # project_updates — project progress update posts # time_tracking — log time and view timesheets on work items # # Note: time_tracking is pushed differently under the hood — it's a plain # project attribute (is_time_tracking_enabled), not part of the /features/ # API the rest of this file maps to 1:1 — but it lives here alongside the # other toggles since that's where Plane's own UI groups it. features: cycles: true modules: true pages: true views: true intakes: false epics: false work_item_types: false workflows: false parallel_cycles: false manually_start_end_cycles: false project_updates: false time_tracking: false