Browse Source

Update v1.1 api

Daniel Supernault 2 years ago
parent
commit
34b57783c4
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Http/Controllers/Api/ApiV1Dot1Controller.php

+ 1 - 0
app/Http/Controllers/Api/ApiV1Dot1Controller.php

@@ -265,6 +265,7 @@ class ApiV1Dot1Controller extends Controller
         $activity = AccountLog::whereUserId($user->id)
             ->whereAction('auth.login')
             ->orderBy('created_at', 'desc')
+            ->groupBy('ip_address')
             ->limit(10)
             ->get()
             ->map(function($item) use($agent, $currentIp) {