Skip to content
Snippets Groups Projects
Commit 4155743c authored by Florent de Labarre's avatar Florent de Labarre Committed by GitHub
Browse files

[FIX] mail: res.users.settings have no display_name


Before this commit res.users.settings have no display_name.

closes odoo/odoo#135106

Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
parent 880538db
Branches
Tags
No related merge requests found
......@@ -7,6 +7,7 @@ from odoo import api, fields, models
class ResUsersSettings(models.Model):
_name = 'res.users.settings'
_description = 'User Settings'
_rec_name = 'user_id'
user_id = fields.Many2one('res.users', string="User", required=True, readonly=True, ondelete='cascade')
is_discuss_sidebar_category_channel_open = fields.Boolean(string="Is discuss sidebar category channel open?", default=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment