We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31bdfa4 commit f71f5e8Copy full SHA for f71f5e8
crates/jz-module/src/repo/list.rs
@@ -99,7 +99,9 @@ impl AppModule {
99
}
100
};
101
let mut condition = Condition::all()
102
- .add(repository::Column::IsPrivate.eq(false));
+ .add(repository::Column::IsPrivate.eq(false))
103
+ .add(repository::Column::OwnerName.eq("Lilypad".to_string()))
104
+ ;
105
if let Some(ref rtype) = rtype {
106
condition = condition.add(repository::Column::Rtype.eq(rtype));
107
0 commit comments