##// END OF EJS Templates
Don't fail if new filter is added....
Don't fail if new filter is added. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11401 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10737:ab066317e62b
r11171:723e21243e8d
Show More
queries.yml
165 lines | 2.5 KiB | text/x-yaml | YamlLexer
Jean-Philippe Lang
Adds missing native eol properties....
r2781 ---
queries_001:
id: 1
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id: 1
is_public: true
name: Multiple custom fields query
filters: |
---
cf_1:
:values:
- MySQL
:operator: "="
status_id:
:values:
- "1"
:operator: o
cf_2:
:values:
- "125"
:operator: "="
user_id: 1
column_names:
queries_002:
id: 2
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id: 1
is_public: false
name: Private query for cookbook
filters: |
---
tracker_id:
:values:
- "3"
:operator: "="
status_id:
:values:
- "1"
:operator: o
user_id: 3
column_names:
queries_003:
id: 3
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id:
is_public: false
name: Private query for all projects
filters: |
---
tracker_id:
:values:
- "3"
:operator: "="
user_id: 3
column_names:
queries_004:
id: 4
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id:
is_public: true
name: Public query for all projects
filters: |
---
tracker_id:
:values:
- "3"
:operator: "="
user_id: 2
column_names:
queries_005:
id: 5
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id:
is_public: true
name: Open issues by priority and tracker
filters: |
---
status_id:
:values:
- "1"
:operator: o
user_id: 1
column_names:
sort_criteria: |
---
- - priority
- desc
- - tracker
- asc
queries_006:
id: 6
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id:
is_public: true
name: Open issues grouped by tracker
filters: |
---
status_id:
:values:
- "1"
:operator: o
user_id: 1
column_names:
group_by: tracker
sort_criteria: |
---
- - priority
- desc
queries_007:
id: 7
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id: 2
is_public: true
name: Public query for project 2
filters: |
---
tracker_id:
:values:
- "3"
:operator: "="
user_id: 2
column_names:
queries_008:
id: 8
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Adds missing native eol properties....
r2781 project_id: 2
is_public: false
name: Private query for project 2
filters: |
---
tracker_id:
:values:
- "3"
:operator: "="
user_id: 2
column_names:
Jean-Philippe Lang
Allow issue grouping by custom field (#2679)....
r2957 queries_009:
id: 9
Jean-Philippe Lang
Adds STI to Query model. Issue queries are now IssueQuery instances....
r10737 type: IssueQuery
Jean-Philippe Lang
Allow issue grouping by custom field (#2679)....
r2957 project_id:
is_public: true
name: Open issues grouped by list custom field
filters: |
---
status_id:
:values:
- "1"
:operator: o
user_id: 1
column_names:
group_by: cf_1
sort_criteria: |
---
- - priority
- desc
Eric Davis
Added the ability to copy a project in the Project Administration panel....
r2608