Skip to content

Commit

Permalink
support in list_flows, flows that have no last flow_version
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Aug 8, 2024
1 parent a77f74c commit 2eb6a7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/windmill-common/src/flows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ pub struct ListableFlow {
pub path: String,
pub summary: String,
pub description: String,
pub edited_by: String,
pub edited_at: chrono::DateTime<chrono::Utc>,
pub edited_by: Option<String>,
pub edited_at: Option<chrono::DateTime<chrono::Utc>>,
pub archived: bool,
pub extra_perms: serde_json::Value,
pub starred: bool,
Expand Down

0 comments on commit 2eb6a7a

Please sign in to comment.