Rename 'published' to 'public' (for recipe)

This commit is contained in:
Greg Burri 2025-04-02 01:53:02 +02:00
parent eaef6dc77e
commit 4f739593b8
20 changed files with 92 additions and 91 deletions

View file

@ -102,9 +102,9 @@ pub struct SetRecipeLanguage {
}
#[derive(Serialize, Deserialize, Clone)]
pub struct SetIsPublished {
pub struct SetIsPublic {
pub recipe_id: i64,
pub is_published: bool,
pub is_public: bool,
}
#[derive(Serialize, Deserialize, Clone)]