diff --git a/todored/src/task.rs b/todored/src/task.rs index bf8097d..d268f5e 100644 --- a/todored/src/task.rs +++ b/todored/src/task.rs @@ -10,8 +10,6 @@ use uuid::Uuid; pub enum BoardChange { /// Set the board's title. Title(String), - /// Set the board's grouping. - Group(BoardGrouping), /// Create, update, or delete the [`Task`] with the given [`Uuid`]. Task(Uuid, Option), } @@ -41,20 +39,6 @@ impl BoardChange { } } -/// A possible grouping of a board's tasks. -#[derive(Clone, Debug, Serialize, Deserialize)] -#[non_exhaustive] -pub enum BoardGrouping { - /// Group tasks by icon. - Icon, - /// Group tasks by importance. - Importance, - /// Group tasks by priority. - Priority, - /// Group tasks by status. - Status, -} - /// A task that can be displayed on the board. #[derive(Clone, Debug, Serialize, Deserialize)] pub struct Task {