From acb8ce6ff4b1a6c1a11a77c6ef16ac25b8c2a51a Mon Sep 17 00:00:00 2001 From: "Laurent Mignon (ACSONE)" Date: Wed, 21 Sep 2016 12:01:21 +0200 Subject: [PATCH] Remove required flag --- web_notify/models/res_users.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_notify/models/res_users.py b/web_notify/models/res_users.py index f4738036e..ea7eb12ee 100644 --- a/web_notify/models/res_users.py +++ b/web_notify/models/res_users.py @@ -18,9 +18,9 @@ class ResUsers(models.Model): record.notify_warning_channel_name = 'notify_warning_%s' % res_id notify_info_channel_name = fields.Char( - compute='_compute_channel_names', store=True, required=True) + compute='_compute_channel_names', store=True) notify_warning_channel_name = fields.Char( - compute='_compute_channel_names', store=True, requried=True) + compute='_compute_channel_names', store=True) @api.multi def notify_info(self, message, title=None, sticky=False):