Skip to content

Commit 3f58e72

Browse files
author
Kevin Renskers
committed
0.2: December 6, 2011
- Define __getattr__ for easy access to kwargs - Start of new settings app, where users can select which types they're interested in - Users can also select backends per type
1 parent 2886f4a commit 3f58e72

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- Completely removed the Django messages backend (it didn't make sense)
2020
- Updated docs and usage examples
2121

22-
Next: Future
22+
0.2: December 6, 2011
2323
- Define __getattr__ for easy access to kwargs
24-
- New settings app
24+
- Start of new settings app, where users can select which types they're interested in
25+
- Users can also select backends per type

notifications/urls.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from django.conf.urls.defaults import patterns, url
2+
from django.contrib.auth.decorators import login_required
23
from notifications.views import IndexView
34

45

56
urlpatterns = patterns('',
6-
url(r'^$', IndexView.as_view(), name='notification-settings-index'),
7+
url(r'^$', login_required(IndexView.as_view()), name='notification-settings-index'),
78
)

0 commit comments

Comments
 (0)