mirror of
https://github.com/bringout/oca-ocb-web.git
synced 2026-04-18 05:52:07 +02:00
10 lines
399 B
Python
10 lines
399 B
Python
# -*- 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')
|
|
unsplash_app_id = fields.Char("Application ID", config_parameter='unsplash.app_id')
|