mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { Model, hasMany } from 'ember-cli-mirage';
|
|
|
|
export default Model.extend({
|
|
events: hasMany('node-event'),
|
|
});
|