mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-25 02:23:44 +03:00
Merge pull request #230 from omidraha/patch-1
Fix patterns function name on the installation pgae.
This commit is contained in:
commit
d26661400d
|
@ -114,7 +114,7 @@ Facebook
|
|||
|
||||
.. code-block:: python
|
||||
|
||||
urlpatterns += pattern('',
|
||||
urlpatterns += patterns('',
|
||||
...,
|
||||
url(r'^rest-auth/facebook/$', FacebookLogin.as_view(), name='fb_login')
|
||||
)
|
||||
|
@ -141,7 +141,7 @@ If you are using Twitter for your social authentication, it is a bit different s
|
|||
|
||||
.. code-block:: python
|
||||
|
||||
urlpatterns += pattern('',
|
||||
urlpatterns += patterns('',
|
||||
...,
|
||||
url(r'^rest-auth/twitter/$', TwitterLogin.as_view(), name='twitter_login')
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user