website.py 293 B

1234567891011
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import fields, models
  4. class Website(models.Model):
  5. _inherit = 'website'
  6. karma_profile_min = fields.Integer(string="Minimal karma to see other user's profile", default=150)