mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-07 13:03:12 +02:00
refactor: moved ip-blacklist and post-queue styles/tpls to themes
This is a breaking change!, re: #8580
This commit is contained in:
@@ -18,7 +18,7 @@ globalModsController.ipBlacklist = async function (req, res, next) {
|
||||
meta.blacklist.get(),
|
||||
analytics.getBlacklistAnalytics(),
|
||||
]);
|
||||
res.render('admin/manage/ip-blacklist', {
|
||||
res.render('ip-blacklist', {
|
||||
title: '[[pages:ip-blacklist]]',
|
||||
rules: rules,
|
||||
analytics: analyticsData,
|
||||
|
||||
@@ -221,7 +221,7 @@ modsController.postQueue = async function (req, res, next) {
|
||||
const stop = start + postsPerPage - 1;
|
||||
postData = postData.slice(start, stop + 1);
|
||||
|
||||
res.render('admin/manage/post-queue', {
|
||||
res.render('post-queue', {
|
||||
title: '[[pages:post-queue]]',
|
||||
posts: postData,
|
||||
allCategories: allCategories,
|
||||
|
||||
Reference in New Issue
Block a user