feat: ability to complete a task #35
@ -83,7 +83,7 @@ impl FromSql<Jsonb, Pg> for Category {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Hash, Clone, Debug)]
|
#[derive(Serialize, Deserialize, PartialEq, Hash, Clone, Debug)]
|
||||||
pub enum ReoccurrenceInterval {
|
pub enum ReoccurrenceInterval {
|
||||||
|
|||||||
Day,
|
Day,
|
||||||
Month,
|
Month,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user
Approved: Enhancements to
ReoccurrenceInterval
andReoccurrence
.The addition of
PartialEq
toReoccurrenceInterval
and the newstart_date
method inReoccurrence
are beneficial for improving the model's functionality and encapsulation. Consider adding documentation for the newstart_date
method to clarify its usage and purpose.Also applies to: 105-107