app/soc/views/models/notification.py
changeset 876 0c1329d4b514
parent 858 e79e7a22326f
child 890 b3bf833c4580
--- a/app/soc/views/models/notification.py	Wed Jan 21 16:12:31 2009 +0000
+++ b/app/soc/views/models/notification.py	Wed Jan 21 16:12:48 2009 +0000
@@ -34,6 +34,7 @@
 from soc.views import helper
 from soc.views import out_of_band
 from soc.views.helper import access
+from soc.views.helper import decorators
 from soc.views.helper import lists as list_helper
 from soc.views.helper import redirects
 from soc.views.models import base
@@ -105,6 +106,8 @@
 
     super(View, self).__init__(params=params)
 
+  @decorators.merge_params
+  @decorators.check_access
   def list(self, request, access_type,
            page_name=None, params=None, filter=None):
     """Lists all notifications that the current logged in user has stored.
@@ -112,13 +115,6 @@
     for parameters see base.list()
     """
 
-    params = dicts.merge(params, self._params)
-
-    try:
-      access.checkAccess(access_type, request, params['rights'])
-    except out_of_band.Error, error:
-      return helper.responses.errorResponse(error, request)
-
     # get the current user
     user_entity = user_logic.logic.getForCurrentAccount()