ddac463514
no issue - custom theme model was missing the `group` attr so the nav menu couldn't see it to assign to groups - changed homepage group from `home` to `homepage` to match gscan - added fallback to showing in the "Site-wide" group if an unknown group value is seen
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
import Model, {attr} from '@ember-data/model';
|
|
|
|
export default Model.extend({
|
|
key: attr('string'),
|
|
type: attr('string'),
|
|
options: attr(),
|
|
default: attr('string'),
|
|
value: attr('string'),
|
|
group: attr('string')
|
|
});
|