Example #1
0
    def get_current_user(self):
        username_raw = self.get_secure_cookie(ACCOUNT_COOKIE_NAME)

        if username_raw:
            username = username_raw.decode('ascii')

            if username:
                if User.is_user_exists(username):
                    return username