When I create a _design doc with a / in it, I'm not able to refer to its filter
in the _changes feed.
Example _design doc:
{
"_id": "_design/a/b",
"filters": {
"test": "function(doc) { return true; };"
}
}
_changes request:
GET http://localhost:5984/test/_changes?filter=a%2fb/test
returns a 400 with the body:
{
error: "bad_request",
reason: "filter parameter must be of the form `designname/filtername`"
}
Is this a bug? Or am I doing something wrong?
I test it without the / in the _design doc, it worked without a problem
--
Gregor Martynus