# HG changeset patch # User Lennard de Rijk # Date 1228080505 0 # Node ID 899ec5d546bd840cce0fba0945074b1cdc082e7c # Parent 1f20cfb91e11164487a504b0c8bed26bc93f9c8b Allow developers access to anything that does a checkIsInvited. Patch by: Lennard de Rijk diff -r 1f20cfb91e11 -r 899ec5d546bd app/soc/views/helper/access.py --- a/app/soc/views/helper/access.py Sun Nov 30 17:37:06 2008 +0000 +++ b/app/soc/views/helper/access.py Sun Nov 30 21:28:25 2008 +0000 @@ -232,7 +232,14 @@ """ checkIsUser(request) - + + try: + # if the current user is a developer we allow access + checkIsDeveloper(request) + return + except out_of_band.Error: + pass + login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { 'role': 'a host for this program'}