From 0a40f1742d812078ae4c0ef787b4a1eeb39824bd Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 14 Dec 2022 16:51:51 +0000 Subject: [PATCH] Changed tag for imported content to be internal (#15934) refs: https://github.com/TryGhost/Ghost/commit/8ed5f9784d08f92d2aa963dc23401af56a07d32a - When importing content from a JSON file in Settings > Labs, a public tag like `Import 2022-12-03 19:57` gets added to each newly imported post. - This tag should not be public. It definitely serves a useful purpose but has no useful function for readers of the site and should not be shown to readers. --- ghost/core/core/server/api/endpoints/db.js | 2 +- .../core/server/data/importer/importers/data/data-importer.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/core/core/server/api/endpoints/db.js b/ghost/core/core/server/api/endpoints/db.js index d2f95d416e..26e22eb731 100644 --- a/ghost/core/core/server/api/endpoints/db.js +++ b/ghost/core/core/server/api/endpoints/db.js @@ -83,7 +83,7 @@ module.exports = { permissions: true, query(frame) { const siteTimezone = settingsCache.get('timezone'); - const importTag = `Import ${moment().tz(siteTimezone).format('YYYY-MM-DD HH:mm')}`; + const importTag = `#Import ${moment().tz(siteTimezone).format('YYYY-MM-DD HH:mm')}`; return importer.importFromFile(frame.file, { user: { email: frame.user.get('email') diff --git a/ghost/core/core/server/data/importer/importers/data/data-importer.js b/ghost/core/core/server/data/importer/importers/data/data-importer.js index c80f3e895d..2b58e0afca 100644 --- a/ghost/core/core/server/data/importer/importers/data/data-importer.js +++ b/ghost/core/core/server/data/importer/importers/data/data-importer.js @@ -55,7 +55,7 @@ DataImporter = { importData.data.tags.push({ id: tagId, name: importOptions.importTag, - slug: slugify(importOptions.importTag) + slug: slugify(importOptions.importTag.replace(/^#/, 'hash-')) }); if (!('posts_tags' in importData.data)) { importData.data.posts_tags = [];