Ghost/ghost/admin/app/models/custom-theme-setting.js
Michael Barrett 9ce4c85905
Added custom theme setting descriptions (#17024)
refs https://github.com/TryGhost/Team/issues/3448

Added the ability to specify a description for a custom theme setting

---------

Co-authored-by: Sodbileg Gansukh <sodbileg.gansukh@gmail.com>
2023-06-15 15:10:56 +01:00

12 lines
261 B
JavaScript

import Model, {attr} from '@ember-data/model';
export default Model.extend({
key: attr('string'),
type: attr('string'),
description: attr('string'),
options: attr(),
default: attr('string'),
value: attr(),
group: attr('string')
});