summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-01 19:32:51 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-01 19:32:51 -0400
commit471e46e70294684efc6d7edfc814d5b9ca04738b (patch)
treebe35eb01fe0f9222406ec1c3c165a78d07397788 /docs
parent107699e5ed61175cc45eba6d59219d8a40946291 (diff)
Add project and column attributes for advanced search
Diffstat (limited to 'docs')
-rw-r--r--docs/search.markdown17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/search.markdown b/docs/search.markdown
index 6e40874a..1d254b29 100644
--- a/docs/search.markdown
+++ b/docs/search.markdown
@@ -127,3 +127,20 @@ Attribute: **category**
- Find tasks with a specific category: `category:"Feature Request"`
- Find all tasks that have those categories: `category:"Bug" category:"Improvements"`
- Find tasks with no category assigned: `category:none`
+
+Search by project
+-----------------
+
+Attribute: **project**
+
+- Find tasks by project name: `project:"My project name"`
+- Find tasks by project id: `project:23`
+- Find tasks for several projects: `project:"My project A" project:"My project B"`
+
+Search by column
+----------------
+
+Attribute: **column**
+
+- Find tasks by column name: `column:"Work in progress"`
+- Find tasks for several columns: `column:"Backlog" column:ready`