From 29c6b145ca40e5bc125f2fb7f00b3ef5dca90d87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Tue, 11 Aug 2020 16:48:15 +0200 Subject: [PATCH] Remove redundant user fetching from login --- src/api/identity.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/identity.rs b/src/api/identity.rs index a43f8de..46a7040 100644 --- a/src/api/identity.rs +++ b/src/api/identity.rs @@ -147,7 +147,6 @@ fn _password_login(data: ConnectData, conn: DbConn, ip: &ClientIp) -> JsonResult } // Common - let user = User::find_by_uuid(&device.user_uuid, &conn).unwrap(); let orgs = UserOrganization::find_by_user(&user.uuid, &conn); let (access_token, expires_in) = device.refresh_tokens(&user, orgs);