Skip to content

Commit cade7ea

Browse files
committed
removed express sessions
1 parent 65a258e commit cade7ea

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fantasy-github",
3-
"version": "0.0.1-5",
3+
"version": "0.0.1-6",
44
"private": true,
55
"dependencies": {
66
"express": "3.1.0",

Diff for: server/coffee/server.coffee

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ app.configure () ->
1515
app.use express.favicon()
1616
app.use express.bodyParser()
1717
app.use express.cookieParser 'secretz'
18-
app.use express.session()
1918
app.use express.methodOverride()
2019
app.use app.router
2120
app.use express.static path.join app.pwd, '/client/app/'

Diff for: server/js/server.js

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
app.use(express.favicon());
2525
app.use(express.bodyParser());
2626
app.use(express.cookieParser('secretz'));
27-
app.use(express.session());
2827
app.use(express.methodOverride());
2928
app.use(app.router);
3029
app.use(express["static"](path.join(app.pwd, '/client/app/')));

0 commit comments

Comments
 (0)