Browse Source

fix: accidental indent during format changed logic

Jun Siang Cheah 1 year ago
parent
commit
150152ddbd
1 changed files with 16 additions and 16 deletions
  1. 16 16
      backend/apps/web/routers/auths.py

+ 16 - 16
backend/apps/web/routers/auths.py

@@ -117,23 +117,23 @@ async def signin(request: Request, form_data: SigninForm):
     else:
         user = Auths.authenticate_user(form_data.email.lower(), form_data.password)
 
-        if user:
-            token = create_token(
-                data={"id": user.id},
-                expires_delta=parse_duration(request.app.state.JWT_EXPIRES_IN),
-            )
+    if user:
+        token = create_token(
+            data={"id": user.id},
+            expires_delta=parse_duration(request.app.state.JWT_EXPIRES_IN),
+        )
 
-            return {
-                "token": token,
-                "token_type": "Bearer",
-                "id": user.id,
-                "email": user.email,
-                "name": user.name,
-                "role": user.role,
-                "profile_image_url": user.profile_image_url,
-            }
-        else:
-            raise HTTPException(400, detail=ERROR_MESSAGES.INVALID_CRED)
+        return {
+            "token": token,
+            "token_type": "Bearer",
+            "id": user.id,
+            "email": user.email,
+            "name": user.name,
+            "role": user.role,
+            "profile_image_url": user.profile_image_url,
+        }
+    else:
+        raise HTTPException(400, detail=ERROR_MESSAGES.INVALID_CRED)
 
 
 ############################