From 06a331493f8283c0057a7bfd4daffc8120c4fa54 Mon Sep 17 00:00:00 2001 From: Max Ogden Date: Thu, 30 Jun 2011 19:03:01 -0700 Subject: [PATCH] quote value to make couch 1.1 stop complaining --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 13ec61bd..c5ef4bfe 100644 --- a/app.js +++ b/app.js @@ -7,7 +7,7 @@ ddoc = , rewrites : [ {from:"/", to:'pages/index.html'} , {from:"/api/csv", to:'_list/csv/all'} - , {from:"/api/headers", to:'_list/array/headers', query: {group: true}} + , {from:"/api/headers", to:'_list/array/headers', query: {group: "true"}} , {from:"/api/rows", to:'_view/all'} , {from:"/api", to:'../../'} , {from:"/api/*", to:'../../*'}