Skip to content

Commit

Permalink
finished with lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vsun757 committed Jan 25, 2024
1 parent 1ae728d commit d3e826a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/identities-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ class IdentitiesService extends BaseService {
}
}

async addCreatedByUserAccountWithCache(attackObject, cache) {
static async addCreatedByUserAccountWithCache(attackObject, cache) {
const userAccountRef = attackObject?.workspace?.workflow?.created_by_user_account;
if (userAccountRef) {
// Use the cache if the caller provides one
Expand Down Expand Up @@ -353,7 +353,7 @@ class IdentitiesService extends BaseService {

// Add user account data
if (attackObject?.workspace?.workflow?.created_by_user_account) {
await this.addCreatedByUserAccountWithCache(attackObject, userAccountCache);
await IdentitiesService.addCreatedByUserAccountWithCache(attackObject, userAccountCache);
}
}

Expand Down

0 comments on commit d3e826a

Please sign in to comment.