mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-02-17 00:40:56 -05:00
Edited fallback route to use all methods in fallback
This commit is contained in:
parent
49ab47e3fe
commit
6563f43511
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ exports.setupMiddleware = (app) ->
|
|||
###Routing function implementations###
|
||||
|
||||
setupFallbackRouteToIndex = (app) ->
|
||||
app.get '*', (req, res) ->
|
||||
app.all '*', (req, res) ->
|
||||
res.sendfile path.join(__dirname, 'public', 'index.html')
|
||||
|
||||
setupFacebookCrossDomainCommunicationRoute = (app) ->
|
||||
|
|
Loading…
Reference in a new issue