mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
|
import Model, {hasMany} from '@ember-data/model';
|
||
|
|
||
|
export default Model.extend({
|
||
|
customThemeSettings: hasMany('custom-theme-setting')
|
||
|
});
|