We have a django app that requires the users to login. For some testing we want to do, we want to disable this so the app can be run without logging in. Is there some way to easily do this? I've tried commenting out all the @login_required decorations, but then I was getting a 403. I tried commenting out the 'if not controller.has_access' lines, but then I was getting 'Report.owner" must be a "User" instance.' Before I hack up the code any more, is there some way to just globally disable the need to login?
-- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.