You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
236 B
JavaScript

'use strict';
const admin = require('../../rewards/admin');
const rewardsController = module.exports;
rewardsController.get = async function (req, res) {
const data = await admin.get();
res.render('admin/extend/rewards', data);
};