Remove required flag

pull/911/merge
Laurent Mignon (ACSONE) 2016-09-21 12:01:21 +02:00 committed by Jairo Llopis
parent f2de5d8663
commit 08ae304da9
1 changed files with 2 additions and 2 deletions

View File

@ -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):