pennersr / django-allauth

Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.

Home Page:https://allauth.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

typo in `authentication_required` in headless RESTView

knowsuchagency opened this issue · comments

Thanks for this amazing package -- I'm really excited for the headless version you're working on!

I noticed a slight typo on the branch

class RESTView(View):
    authtentication_required = False
    ...

should be...

class RESTView(View):
    authentication_required = False
    ...

Thanks for spotting that. That attribute is no longer need, I have it removed locally now (but have yet to push). All is very much in flux still, but getting there...