diff options
author | Erich Eckner <git@eckner.net> | 2018-09-26 14:30:41 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-09-26 14:30:41 +0200 |
commit | 85926b79eb2c9078b81e71b9bd2da93dff382a2b (patch) | |
tree | 1f73acb6b18e286114e16ae6414ad146ebec7826 /buildmaster/build-list.php | |
parent | 542d4ee101282543685125dcc0a5d359b5aebc9f (diff) | |
download | archweb32-85926b79eb2c9078b81e71b9bd2da93dff382a2b.tar.xz |
buildmaster/build-list.php: add filter for target repository
Diffstat (limited to 'buildmaster/build-list.php')
-rw-r--r-- | buildmaster/build-list.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/buildmaster/build-list.php b/buildmaster/build-list.php index 80caf0a..f915788 100644 --- a/buildmaster/build-list.php +++ b/buildmaster/build-list.php @@ -27,6 +27,17 @@ $multi_select_search_criteria = array( "query_post" => "\"\")", "values" => array() ), + "repo" => array( + "name" => "repo", + "title" => "Repository", + "label" => "Repo", + "source_table" => "upstream_repositories", + "query_pre" => "`ba_q`.`package_repository` IN (", + "query_in_pre" => "\"", + "query_in_post" => "\",", + "query_post" => "\"\")", + "values" => array() + ), "failures" => array( "name" => "failures", "title" => "Fail Reasons", |