oca-ocb-core/odoo-bringout-oca-ocb-survey/survey/models/challenge.py
Ernad Husremovic 2d3ee4855a 19.0 vanilla
2026-03-09 09:30:27 +01:00

12 lines
370 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields
class GamificationChallenge(models.Model):
_inherit = 'gamification.challenge'
challenge_category = fields.Selection(selection_add=[
('certification', 'Certifications')
], ondelete={'certification': 'set default'})