diff options
| author | Teddy Wing | 2012-11-10 22:22:45 -0500 |
|---|---|---|
| committer | Teddy Wing | 2012-11-10 22:22:45 -0500 |
| commit | 318bf7af2ab5715f36fa9f0aa6e35f9e2e11bc58 (patch) | |
| tree | 23c7589f3a900834e3dbee00a91fdf6177465358 | |
| parent | de4cdc36395ea7d8fa774eb0f16592b62c199a87 (diff) | |
| download | gifmusicvideo-play.tar.bz2 | |
routes.js: removed trailing slashes from routes.play
| -rw-r--r-- | routes.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,8 +6,8 @@ var fetchgif = require('./fetchgif'); module.exports = function(app) { app.all('/', index); - app.post('/1/dropgif/:song_name/', dropgif); - app.get('/1/song/:song_name/', song); - app.get('/:song_name/', play); + app.post('/1/dropgif/:song_name', dropgif); + app.get('/1/song/:song_name', song); + app.get('/:song_name', play); app.get('/1/fetchgif', fetchgif); } |
