Skip to content

Commit

Permalink
fix to work with new connect-mongo api
Browse files Browse the repository at this point in the history
  • Loading branch information
nateps committed Apr 15, 2012
1 parent e7c2168 commit 10fcc29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/chat/package.json
Expand Up @@ -8,7 +8,7 @@
"racer-db-mongo": "*",
"express": ">=2 <3",
"connect-gzip": ">=0.1.5",
"connect-session-mongo": "git://github.com/bnoguchi/connect-session-mongo.git"
"connect-mongo": ">=0.1.9"
},
"private": true,
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/chat/src/server/index.coffee
Expand Up @@ -3,7 +3,7 @@ express = require 'express'
derby = require 'derby'
gzip = require 'connect-gzip'
chat = require '../chat'
MongoStore = require 'connect-session-mongo'
MongoStore = require('connect-mongo')(express)


## SERVER CONFIGURATION ##
Expand Down

0 comments on commit 10fcc29

Please sign in to comment.