Skip to content

Commit 35b0655

Browse files
committed
update README
1 parent d9e3844 commit 35b0655

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ Quick start
3131

3232
$ pip install django-unifi-portal
3333

34+
- To get the latest version
35+
36+
$ pip install git+https://github.com/bsab/django-unifi-portal.git
3437

3538
- Migrate the django_unifi_portal app to create the user model:
3639

django_unifi_portal/urls.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77

88
# Front-End access
99
url(r'guest/s/default/$', UserAuthorizeView.as_view(), name='index'),
10+
url(r'^$', UnifiUserLogin.as_view(), name='unifi_login_direct'),
1011
url(r'^unifi-portal/login/$', UnifiUserLogin.as_view(), name='unifi_login'),
1112
url(r'^unifi-portal/logout/$',UnifiUserLogout.as_view(), name='unifi_logout'),
1213
url(r'^unifi-portal/registration/$', UnifiUserRegistration.as_view(), name="unifi_registration"),
1314

14-
# Back-End access
15-
1615
]

0 commit comments

Comments
 (0)