chore: eslint prefer-template

This commit is contained in:
Peter Jaszkowiak
2021-02-03 23:59:08 -07:00
committed by Julian Lam
parent 4ee0f1459d
commit 707b55b6a5
357 changed files with 2425 additions and 2427 deletions

View File

@@ -113,7 +113,7 @@ Controllers.login = async function (req, res) {
data.alternate_logins = loginStrategies.length > 0;
data.authentication = loginStrategies;
data.allowRegistration = registrationType === 'normal';
data.allowLoginWith = '[[login:' + allowLoginWith + ']]';
data.allowLoginWith = `[[login:${allowLoginWith}]]`;
data.breadcrumbs = helpers.buildBreadcrumbs([{
text: '[[global:login]]',
}]);
@@ -187,7 +187,7 @@ Controllers.register = async function (req, res, next) {
Controllers.registerInterstitial = async function (req, res, next) {
if (!req.session.hasOwnProperty('registration')) {
return res.redirect(nconf.get('relative_path') + '/register');
return res.redirect(`${nconf.get('relative_path')}/register`);
}
try {
const data = await plugins.hooks.fire('filter:register.interstitial', {
@@ -230,11 +230,11 @@ Controllers.robots = function (req, res) {
if (meta.config['robots:txt']) {
res.send(meta.config['robots:txt']);
} else {
res.send('User-agent: *\n' +
'Disallow: ' + nconf.get('relative_path') + '/admin/\n' +
'Disallow: ' + nconf.get('relative_path') + '/reset/\n' +
'Disallow: ' + nconf.get('relative_path') + '/compose\n' +
'Sitemap: ' + nconf.get('url') + '/sitemap.xml');
res.send(`${'User-agent: *\n' +
'Disallow: '}${nconf.get('relative_path')}/admin/\n` +
`Disallow: ${nconf.get('relative_path')}/reset/\n` +
`Disallow: ${nconf.get('relative_path')}/compose\n` +
`Sitemap: ${nconf.get('url')}/sitemap.xml`);
}
};
@@ -252,37 +252,37 @@ Controllers.manifest = async function (req, res) {
if (meta.config['brand:touchIcon']) {
manifest.icons.push({
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-36.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-36.png`,
sizes: '36x36',
type: 'image/png',
density: 0.75,
}, {
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-48.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-48.png`,
sizes: '48x48',
type: 'image/png',
density: 1.0,
}, {
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-72.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-72.png`,
sizes: '72x72',
type: 'image/png',
density: 1.5,
}, {
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-96.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-96.png`,
sizes: '96x96',
type: 'image/png',
density: 2.0,
}, {
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-144.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-144.png`,
sizes: '144x144',
type: 'image/png',
density: 3.0,
}, {
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-192.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-192.png`,
sizes: '192x192',
type: 'image/png',
density: 4.0,
}, {
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-512.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-512.png`,
sizes: '512x512',
type: 'image/png',
density: 10.0,
@@ -292,13 +292,13 @@ Controllers.manifest = async function (req, res) {
if (meta.config['brand:maskableIcon']) {
manifest.icons.push({
src: nconf.get('relative_path') + '/assets/uploads/system/maskableicon-orig.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/maskableicon-orig.png`,
type: 'image/png',
purpose: 'maskable',
});
} else if (meta.config['brand:touchIcon']) {
manifest.icons.push({
src: nconf.get('relative_path') + '/assets/uploads/system/touchicon-orig.png',
src: `${nconf.get('relative_path')}/assets/uploads/system/touchicon-orig.png`,
type: 'image/png',
purpose: 'maskable',
});