Missed some not found errors
authorchapel <jacob.chapel@gmail.com>
Sat, 19 Nov 2011 22:25:09 +0000 (14:25 -0800)
committerchapel <jacob.chapel@gmail.com>
Sat, 19 Nov 2011 22:25:09 +0000 (14:25 -0800)
app.js

diff --git a/app.js b/app.js
index 62c543cb4567a6e669d45c3f8ed5577cd99d6442..ce7010c3b46b15781f926d4177d82fcdfff30707 100644 (file)
--- a/app.js
+++ b/app.js
@@ -1452,7 +1452,7 @@ function loadSubject( req, res, next ) {
   if( url.parse( req.url ).pathname.match(/subject/) ) {
     ArchivedSubject.findOne({id: req.params.id }, function(err, subject) {
       if ( err || !subject) {
-        sendJson(res,  {status: 'error', message: 'Subject with this ID does not exist'} )
+        sendJson(res,  {status: 'not_found', message: 'Subject with this ID does not exist'} )
       } else {
         req.subject = subject;
         next()
@@ -1467,7 +1467,7 @@ function loadOldCourse( req, res, next ) {
   if( url.parse( req.url ).pathname.match(/course/) ) {
     ArchivedCourse.findOne({id: req.params.id }, function(err, course) {
       if ( err || !course ) {
-        sendJson(res,  {status: 'error', message: 'Course with this ID does not exist'} )
+        sendJson(res,  {status: 'not_found', message: 'Course with this ID does not exist'} )
       } else {
         req.course = course;
         next()