In a few of my Cloud functions, I have the following code, to assert that the request is being made by an authenticated user: ``` var currentUser = request.user; if (!currentUser) { response.error("You must be authenticated to call queryClinic"); return; } ``` When using parse-server, currentUser doesn't exists. Is this a temporary limitation?