NodeBB/NodeBB

View on GitHub
src/controllers/admin/tags.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

const topics = require('../../topics');

const tagsController = module.exports;

tagsController.get = async function (req, res) {
    const tags = await topics.getTags(0, 199);
    res.render('admin/manage/tags', { tags: tags });
};