summaryrefslogtreecommitdiff
path: root/routes/settings.js
blob: 658c0f2169d0f10ee9b8e6d3196fe87b7e8ff0e3 (plain)
1
2
3
4
5
6
7
8
"use strict";

function settings(req, res)
{
	res.render('settings', {showSearchBar: true});
};

module.exports = settings;