Skip to content

Commit

Permalink
fixed view events tag
Browse files Browse the repository at this point in the history
  • Loading branch information
MelonSmasher committed Dec 13, 2017
1 parent d834838 commit 0d6691c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Events/Api/Account/AccountViewed.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __construct(Account $account)

$logMessage = 'viewed account - ';
$logContext = [
'action' => 'update',
'action' => 'view',
'model' => 'account',
'account_id' => $account->id,
'account_identifier' => $account->identifier,
Expand Down
2 changes: 1 addition & 1 deletion app/Events/Api/Account/AccountsViewed.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct($accountIds = [])

$logMessage = 'viewed accounts - ';
$logContext = [
'action' => 'restore',
'action' => 'view',
'model' => 'account',
'account_ids' => $accountIds,
'account_id_count' => count($accountIds),
Expand Down

0 comments on commit 0d6691c

Please sign in to comment.