回答編集履歴
3
誤字の修正
test
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
なぜか、プロジェクトを含めると
|
1
|
+
なぜか、プロジェクトを含めると全件ヒットしてしまい、カスタムフィールドの条件で絞り込まれません。
|
2
2
|
|
3
3
|
curl -v --insecure --user user:password https://localhost/redmine/issues.json?project_id=4&cf_1=http://www.example1.com&key=API KEY
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
-
検索条件をカスタムフィールドのみにしたらうまく行きました。
|
7
|
+
検索条件をカスタムフィールドのみにしたらうまく行きましたが、複数プロジェクトを検索してヒットしてしまいます。
|
8
8
|
|
9
9
|
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&key=API KEY
|
10
10
|
|
2
内容の追加
test
CHANGED
@@ -1,7 +1,15 @@
|
|
1
|
-
|
1
|
+
なぜか、プロジェクトを含めるとなぜか全件ヒットしてしまいますね。
|
2
2
|
|
3
|
-
|
3
|
+
curl -v --insecure --user user:password https://localhost/redmine/issues.json?project_id=4&cf_1=http://www.example1.com&key=API KEY
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
+
検索条件をカスタムフィールドのみにしたらうまく行きました。
|
8
|
+
|
7
9
|
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&key=API KEY
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
そこで、以下のようにリンク部分で指定したら、特定のプロジェクトのカスタムフィールドで絞り込めました。
|
14
|
+
|
15
|
+
curl -v --insecure --user user:password https://localhost/redmine/projects/プロジェクト名/issues.json?cf_1=http://www.example1.com&key=API KEY
|
1
内容の修正
test
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
検索条件
|
1
|
+
検索条件をカスタムフィールドのみにしたらうまく行きました。
|
2
2
|
|
3
|
-
*プロジェクトを
|
3
|
+
*プロジェクトを含めるとなぜか全件ヒットしてしまいますね。
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
-
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&
|
7
|
+
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&key=API KEY
|