11 lines
399 B
Python
11 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')
|