Added body response for Successful login

This commit is contained in:
Lynixenn
2024-12-17 19:04:47 +01:00
parent 010e518828
commit 4dfa695458

View File

@@ -202,6 +202,7 @@ async function api_login(ctx: Context): Promise<string> {
return "Error";
}
helper_utils.sendResponse(ctx, { status: 200, body: "Success" });
return "Success";
}