Replies: 1 comment
-
I sorted this with tap activity placed in the model public function tapActivity(Activity $activity, string $eventName)
{
$data = array( $activity->log_name,
$activity->description,
$activity->subject_type,
$activity->event,
$activity->subject_id,
$activity->causer_type,
$activity->causer_id,
$activity->properties,
$activity->batch_uuid,
);
$activity ->HASH = Security::hashText($data);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I need to extend the activity log by adding an additional field that is saved in the database. I tried to use an observable but the value is not being stored. Observable is being launched and works as intended. May I am missing something?
Beta Was this translation helpful? Give feedback.
All reactions