mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 22:44:05 +00:00
Update UpdateSyncedResource.php
This commit is contained in:
parent
134cb291ea
commit
05ed7214b0
1 changed files with 3 additions and 1 deletions
|
|
@ -15,6 +15,8 @@ use Stancl\Tenancy\Events\SyncedResourceChangedInForeignDatabase;
|
||||||
use Stancl\Tenancy\Events\SyncedResourceSaved;
|
use Stancl\Tenancy\Events\SyncedResourceSaved;
|
||||||
use Stancl\Tenancy\Exceptions\ModelNotSyncMasterException;
|
use Stancl\Tenancy\Exceptions\ModelNotSyncMasterException;
|
||||||
|
|
||||||
|
// todo@v4 review all code related to resource syncing
|
||||||
|
|
||||||
class UpdateSyncedResource extends QueueableListener
|
class UpdateSyncedResource extends QueueableListener
|
||||||
{
|
{
|
||||||
public static bool $shouldQueue = false;
|
public static bool $shouldQueue = false;
|
||||||
|
|
@ -154,7 +156,7 @@ class UpdateSyncedResource extends QueueableListener
|
||||||
return array_merge($model->only(array_merge($model->getSyncedAttributeNames(), $attributes)), $defaultValues);
|
return array_merge($model->only(array_merge($model->getSyncedAttributeNames(), $attributes)), $defaultValues);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Developer provided the attribute names, so we'd use them to pick model attributes
|
// Developer provided the attribute names, so we'll use them to pick model attributes
|
||||||
return $model->only($model->getSyncedCreationAttributes());
|
return $model->only($model->getSyncedCreationAttributes());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue