mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-16 12:32:50 +01:00
16 lines
364 B
JavaScript
16 lines
364 B
JavaScript
'use strict';
|
|
|
|
const appearanceController = module.exports;
|
|
|
|
appearanceController.themes = function (req, res) {
|
|
res.render(`admin/appearance/themes`, {});
|
|
};
|
|
|
|
appearanceController.skins = function (req, res) {
|
|
res.render(`admin/appearance/skins`, {});
|
|
};
|
|
|
|
appearanceController.customise = function (req, res) {
|
|
res.render(`admin/appearance/customise`, {});
|
|
};
|