0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Used designated source importer for members event table

no issue

Using a designated source for members being added within the `importer` context will better describe the source in our members event table. It's more consistent with the usage of the other possible sources.
This commit is contained in:
Aileen Nowak 2022-04-07 10:16:38 -04:00 committed by Aileen Booker
parent dd702f6ef8
commit ea237ebcee

View file

@ -228,8 +228,10 @@ module.exports = class MemberRepository {
source = 'import';
} else if (context.internal) {
source = 'system';
} else if (context.user || context.importer) {
} else if (context.user) {
source = 'admin';
} else if (context.importer) {
source = 'importer';
} else if (context.api_key) {
source = 'api';
} else {