14 lines
386 B
Python
14 lines
386 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class ResGroups(models.Model):
|
|
_inherit = "res.groups"
|
|
|
|
def write(self, vals):
|
|
res = super().write(vals)
|
|
if vals.get("users"):
|
|
self.env["discuss.channel"].search([("group_ids", "in", self._ids)])._subscribe_users_automatically()
|
|
return res
|