Orgs: allow setting location field by PATCH

This commit is contained in:
Sybren A. Stüvel 2017-08-23 15:38:13 +02:00
parent 1bd6e07fe2
commit c6eebc4eae

View File

@ -108,6 +108,7 @@ class OrganizationPatchHandler(patch_handler.AbstractPatchHandler):
'name': patch['name'].strip(),
'description': patch.get('description', '').strip(),
'website': patch.get('website', '').strip(),
'location': patch.get('location', '').strip(),
}
self.log.info('User %s edits Organization %s: %s', current_user_id, org_id, update)