summaryrefslogtreecommitdiff
path: root/addons/website_profile/models/website.py
blob: 76a37eba3d98985fa8f072ee33a295e0c26d8cd3 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

from odoo import fields, models


class Website(models.Model):
    _inherit = 'website'

    karma_profile_min = fields.Integer(string="Minimal karma to see other user's profile", default=150)