mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
9ce4c85905
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>
12 lines
261 B
JavaScript
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')
|
|
});
|