diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-24 10:24:18 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-12-24 10:24:18 +0100 |
commit | 86e482838cd50eb5aac6d58209a59c6917722be4 (patch) | |
tree | 8ed1c46c198f9db9e1d977f3ecb3d3f515fe3bdf /docs | |
parent | 4f2acd309f04f0d907dbc036b2ffb77a79899417 (diff) |
Use some new features in the ticket tracker example
Diffstat (limited to 'docs')
-rw-r--r-- | docs/examples/ticket_tracker/settings.yaml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/examples/ticket_tracker/settings.yaml b/docs/examples/ticket_tracker/settings.yaml index 67e87d0..a421feb 100644 --- a/docs/examples/ticket_tracker/settings.yaml +++ b/docs/examples/ticket_tracker/settings.yaml @@ -2,6 +2,10 @@ name: Our tasks lang: english entry_label: '{{ short_id }}: {{ name }} [{{ status }}]' git: true +search_aliases: + open: '(status:planned OR status:ready OR status:"in progress" OR status:comments)' + active: '(status:"in progress" OR status:comments)' + closed: '(status:done OR status:invalid)' fields: - name: name type: string @@ -13,8 +17,14 @@ fields: - name: status type: text index: field - help: planned|ready|in progress|comments|done|invalid sortable: true + values: + - planned + - ready + - in progress + - comments + - done + - invalid - name: assignee type: string index: field |