13 lines
346 B
Python
13 lines
346 B
Python
|
# -*- 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=[
|
||
|
('slides', 'Website / Slides')
|
||
|
], ondelete={'slides': 'set default'})
|