blob: 2eca06a5f4164814d9e7723458d1fe08b4f6c33c (
plain)
1
2
3
4
5
6
7
8
9
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'
unsplash_access_key = fields.Char("Access Key", config_parameter='unsplash.access_key')
|