First time here? Check out the FAQ!
0

Does askbot use django authentication

I want to confirm if askbot has turned on default django authentication. I see the middleware file in the authentication module and sounds like what askbot doing is using django authentication but customize by writing the middleware. in that case if I comment 'django.contrib.auth.middleware.AuthenticationMiddleware', this line I can simply disable the askbot authentication or do it need to do more?

SocialQA's avatar
265
SocialQA
asked 2013-03-26 18:52:47 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

Askbot does use the default django password authentication. To disable all of askbot's authentication, remove app askbot.deps.django_authopenid from the INSTALLED_APPS list and remove askbot.deps.django_authopenid.backends.AuthBackend from the AUTHENTICATION_BACKENDS

Evgeny's avatar
13.2k
Evgeny
answered 2013-03-26 19:10:00 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments