blob: 23b54c16ce7001c3cadd5400646a2101db76b438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields
class Challenge(models.Model):
_inherit = 'gamification.challenge'
challenge_category = fields.Selection(selection_add=[
('certification', 'Certifications')
], ondelete={'certification': 'set default'})
|