12 lines
260 B
Python
12 lines
260 B
Python
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class SurveyQuestion(models.Model):
|
|
_inherit = "survey.question"
|
|
|
|
question_type = fields.Selection(
|
|
selection_add=[("file", "File")]
|
|
)
|