[FIX] res.users: whitelist recently added `tz_offset` field so that users can read it on their own record (even the anonymous user)

bzr revid: odo@openerp.com-20121212210137-u0vwkth5wt0au6qc
This commit is contained in:
Olivier Dony 2012-12-12 22:01:37 +01:00
parent e493303e18
commit 9aa0701836
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ class res_users(osv.osv):
# User can write on a few of his own fields (but not his groups for example)
SELF_WRITEABLE_FIELDS = ['password', 'signature', 'action_id', 'company_id', 'email', 'name', 'image', 'image_medium', 'image_small', 'lang', 'tz']
# User can read a few of his own fields
SELF_READABLE_FIELDS = ['signature', 'company_id', 'login', 'email', 'name', 'image', 'image_medium', 'image_small', 'lang', 'tz', 'groups_id', 'partner_id', '__last_update']
SELF_READABLE_FIELDS = ['signature', 'company_id', 'login', 'email', 'name', 'image', 'image_medium', 'image_small', 'lang', 'tz', 'tz_offset', 'groups_id', 'partner_id', '__last_update']
def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'):
def override_password(o):