Skip to content

Commit

Permalink
UserObserver token removal
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnakamura committed Jun 3, 2022
1 parent 692bfbe commit 4ce092b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Observers/User/UserObserver.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function created($user)
}

try {
$issSupernova = new IssSupernova();
$issSupernova = new IssSupernova('no-token');
$response = $issSupernova->users()->create($data);
return $response;
} catch (\Throwable $exception) {
Expand Down Expand Up @@ -75,7 +75,7 @@ public function updated($user)
}

try {
$issSupernova = new IssSupernova();
$issSupernova = new IssSupernova('no-token');
$response = $issSupernova->users()->update($data);
return $response;
} catch (\Throwable $exception) {
Expand Down

0 comments on commit 4ce092b

Please sign in to comment.