This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added semicolons to server code for consistency and general formatting
- Loading branch information
Brian Oley
committed
Aug 16, 2013
1 parent
d7c04a8
commit 82ef533
Showing
10 changed files
with
263 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
/** | ||
* Module dependencies. | ||
*/ | ||
|
||
var mongoose = require('mongoose') | ||
, async = require('async') | ||
, _ = require('underscore') | ||
var mongoose = require('mongoose'), | ||
async = require('async'), | ||
_ = require('underscore'); | ||
|
||
|
||
exports.render = function(req, res){ | ||
res.render('index', { | ||
user: req.user ? JSON.stringify(req.user) : "null" | ||
}) | ||
} | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.