aboutsummaryrefslogtreecommitdiffstats
path: root/routes/character-chosen-dialog.js
blob: db5a6c013579325be9042b055a33cf55dc01789d (plain)
1
2
3
4
5
6
7
8
9
10
11
module.exports = function(req, res) {
	this.success = req.params.success;
	
	this.data = {
		success: this.success,
		character_name: req.query.character_name,
		character_image_url: req.query.character_image_url
	};
	
	res.render('character-chosen-dialog', this.data);
};