diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-14 18:54:55 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-14 18:54:55 +0000 |
commit | 58610ec52af2249c4c5eebf35e11cd827a7966ab (patch) | |
tree | b699b63943e7de4638a1c7c8ec03e21325f69ea4 /test/fixtures/custom_fields.yml | |
parent | 38b185f1dc4d296eb49c94a3ccff7496b1367c84 (diff) | |
download | redmine-58610ec52af2249c4c5eebf35e11cd827a7966ab.tar.gz redmine-58610ec52af2249c4c5eebf35e11cd827a7966ab.zip |
Search engine: issue custom fields can now be searched.
Each issue custom field (excepting numeric, date and boolean fields) can be marked as "Searchable" (default to false).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@994 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures/custom_fields.yml')
-rw-r--r-- | test/fixtures/custom_fields.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/fixtures/custom_fields.yml b/test/fixtures/custom_fields.yml index ce7509fe9..e73e6de96 100644 --- a/test/fixtures/custom_fields.yml +++ b/test/fixtures/custom_fields.yml @@ -11,16 +11,17 @@ custom_fields_001: is_required: false
field_format: list
custom_fields_002:
- name: Build
+ name: Searchable field
min_length: 1
regexp: ""
is_for_all: true
type: IssueCustomField
- max_length: 10
+ max_length: 100
possible_values: ""
id: 2
is_required: false
field_format: string
+ searchable: true
custom_fields_003:
name: Development status
min_length: 0
|