﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25075	Change is_authenticated() that depended on is_active	Grigoriy Kramarenko	nobody	"I propose to change the following:

{{{
@python_2_unicode_compatible
class AbstractBaseUser(models.Model):
    ...

    is_active = True

    ...

    def is_authenticated(self):
        """"""
        Always return True if user is active. This is a way to tell if the user has been
        authenticated in templates. Also this used in `login_required` decorator.
        """"""
        return self.is_active

}}}"	Bug	closed	contrib.auth	1.8	Normal	invalid			Unreviewed	0	1	0	0	1	0
