# HG changeset patch # User Lennard de Rijk # Date 1229166128 0 # Node ID ddf44af087a08445839def09aaadf239ae847faa # Parent ba3d399ec9be734e8123187a39290f7ba5c48bef Using getForCurrentAccount where possible due to comments on r1309. Patch by: Lennard de Rijk diff -r ba3d399ec9be -r ddf44af087a0 app/soc/views/helper/access.py --- a/app/soc/views/helper/access.py Fri Dec 12 23:28:18 2008 +0000 +++ b/app/soc/views/helper/access.py Sat Dec 13 11:02:08 2008 +0000 @@ -358,8 +358,7 @@ notification = notification_logic.logic.getForFields(properties, unique=True) - user = user_logic.logic.getForFields( - {'account': users.get_current_user()}, unique=True) + user = user_logic.logic.getForCurrentAccount() # check if the key of the current user matches the key from the scope of the message if user.key() == notification.scope.key(): diff -r ba3d399ec9be -r ddf44af087a0 app/soc/views/models/notification.py --- a/app/soc/views/models/notification.py Fri Dec 12 23:28:18 2008 +0000 +++ b/app/soc/views/models/notification.py Sat Dec 13 11:02:08 2008 +0000 @@ -168,8 +168,7 @@ params = dicts.merge(params, self._params) # get the current user - properties = {'account': users.get_current_user()} - user_entity = user_logic.logic.getForFields(properties, unique=True) + user_entity = user_logic.logic.getForCurrentAccount() # only select the notifications for this user so construct a filter filter = {'scope': user_entity} @@ -193,8 +192,8 @@ """See base.View._editPost(). """ - account = users.get_current_user() - current_user = user_logic.logic.getForFields({'account': account}, unique=True) + # get the current user + current_user = user_logic.logic.getForCurrentAccount() to_user = user_logic.logic.getForFields( {'link_id' : fields['to_user']}, unique=True) @@ -225,11 +224,10 @@ # and the notification has not been read yet if not entity.has_been_read: # get the current user - account = users.get_current_user() - user = user_logic.logic.getForFields({'account': account}, unique=True) + user = user_logic.logic.getForCurrentAccount() if entity.scope.key() == user.key(): - # mark the entity as read + # mark the entity as read self._logic.updateModelProperties(entity, {'has_been_read' : True} ) context['entity_type_url'] = self._params['url_name']