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:
parent
dd702f6ef8
commit
ea237ebcee
1 changed files with 3 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue