mirror of https://github.com/OCA/web.git
Remove required flag
parent
8b2079b3ef
commit
acb8ce6ff4
|
@ -18,9 +18,9 @@ class ResUsers(models.Model):
|
||||||
record.notify_warning_channel_name = 'notify_warning_%s' % res_id
|
record.notify_warning_channel_name = 'notify_warning_%s' % res_id
|
||||||
|
|
||||||
notify_info_channel_name = fields.Char(
|
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(
|
notify_warning_channel_name = fields.Char(
|
||||||
compute='_compute_channel_names', store=True, requried=True)
|
compute='_compute_channel_names', store=True)
|
||||||
|
|
||||||
@api.multi
|
@api.multi
|
||||||
def notify_info(self, message, title=None, sticky=False):
|
def notify_info(self, message, title=None, sticky=False):
|
||||||
|
|
Loading…
Reference in New Issue