aboutsummaryrefslogtreecommitdiff
path: root/routes
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-07-02 23:10:44 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2012-07-02 23:10:44 +0200
commit3c02f1b6ea8e7b2a87482f60ff82cea44ede40f4 (patch)
tree9d385a869a11cd8c258f6a91087dea9cb8e5febc /routes
parent350b7ac055ed6374bde8bf49278c085f583c5781 (diff)
downloadexample-collection-json-db-3c02f1b6ea8e7b2a87482f60ff82cea44ede40f4.tar.gz
example-collection-json-db-3c02f1b6ea8e7b2a87482f60ff82cea44ede40f4.tar.bz2
example-collection-json-db-3c02f1b6ea8e7b2a87482f60ff82cea44ede40f4.tar.xz
example-collection-json-db-3c02f1b6ea8e7b2a87482f60ff82cea44ede40f4.zip
o Fixing bug.
Diffstat (limited to 'routes')
-rw-r--r--routes/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/index.js b/routes/index.js
index ec57575..82dd1ca 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -97,7 +97,7 @@ exports.departments = function(req, res) {
else {
var c = {collection: {
href: res.urlgenerator.departments(),
- items: mapDepartments(res, departments.rows)
+ items: mapDepartments(res, rs2.rows)
}};
res.contentType('application/vnd.collection+json');
res.send(JSON.stringify(collection_json.fromObject(c)), 200);