mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +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')
|
||
|
});
|