mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-02-15 11:07:44 +01:00
11 lines
236 B
JavaScript
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);
|
|
};
|