aboutsummaryrefslogtreecommitdiffstats
path: root/routes/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes/index.js')
-rw-r--r--routes/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/routes/index.js b/routes/index.js
index f0d7c86..20333b5 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -1,7 +1,9 @@
module.exports = function(app) {
var index = require('./home')
- , character_images = require('./character-images');
+ , character_images = require('./character-images')
+ , character_chosen_dialog = require('./character-chosen-dialog');
app.get('/', index);
app.get('/character-images/:series_id', character_images);
+ app.get('/character-chosen/:success', character_chosen_dialog);
}; \ No newline at end of file