MongoEngine User authentication (django)
I am trying to use MongoEngine in a django project I am writing. I am having difficulty getting (or understanding how) the authentication backend works. The user object as far as I can tell is not stored in the request. I have it working but I am not sure if I am doing it in the right/safe way. If someone could look at my code I would be much appreciated. def login(request): user = authenticate(request.POST['username'],request.POST['password']) if user is not None: request.session['user'] = user if user.is_authenticated: return HttpResponse(user) else: return HttpResponse('login failed') def