From d4fe81c290fad154e0683f3c1ecdc67363e727cd Mon Sep 17 00:00:00 2001 From: snipe Date: Sun, 8 Jun 2025 15:27:50 +0100 Subject: [PATCH] Fixed #17127 - added note to EULA info Signed-off-by: snipe --- app/Models/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/User.php b/app/Models/User.php index a3a66aef0e..35964dc7f8 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -562,7 +562,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo { return $this->hasMany(Actionlog::class, 'target_id') ->with('item') - ->select(['id', 'target_id', 'target_type', 'action_type', 'filename', 'accept_signature', 'created_at']) + ->select(['id', 'target_id', 'target_type', 'action_type', 'filename', 'accept_signature', 'created_at', 'note']) ->where('target_type', self::class) ->where('action_type', 'accepted') ->whereNotNull('filename')