11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { Model, belongsTo } from 'ember-cli-mirage';
|
|
|
|
export default Model.extend({
|
|
taskGroupScale: belongsTo(),
|
|
});
|