author | Lennard de Rijk <ljvderijk@gmail.com> |
Sun, 30 Nov 2008 21:28:25 +0000 | |
changeset 633 | 899ec5d546bd |
parent 632 | 1f20cfb91e11 |
child 634 | ad58da0b78e8 |
--- 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'}