Skip to content

Commit f71f5e8

Browse files
committed
feat(repo): list Lilypad model
1 parent 31bdfa4 commit f71f5e8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/jz-module/src/repo/list.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ impl AppModule {
9999
}
100100
};
101101
let mut condition = Condition::all()
102-
.add(repository::Column::IsPrivate.eq(false));
102+
.add(repository::Column::IsPrivate.eq(false))
103+
.add(repository::Column::OwnerName.eq("Lilypad".to_string()))
104+
;
103105
if let Some(ref rtype) = rtype {
104106
condition = condition.add(repository::Column::Rtype.eq(rtype));
105107
};

0 commit comments

Comments
 (0)