Save user IP to audit log

This commit is contained in:
Zero 2021-08-27 12:42:02 +08:00
parent 5cf0c99e32
commit 8efaeb068b

View File

@ -11,6 +11,7 @@ use BookStack\Interfaces\Loggable;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Request;
class ActivityService
{
@ -58,6 +59,7 @@ class ActivityService
return $this->activity->newInstance()->forceFill([
'type' => strtolower($type),
'user_id' => user()->id,
'ip' => Request::ip(),
]);
}