mirror of
https://github.com/kemko/nomad.git
synced 2026-01-09 11:55:42 +03:00
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { Model, belongsTo, hasMany } from 'ember-cli-mirage';
|
|
|
|
export default Model.extend({
|
|
plugin: belongsTo('csi-plugin'),
|
|
writeAllocs: hasMany('allocation'),
|
|
readAllocs: hasMany('allocation'),
|
|
allocations: hasMany('allocation'),
|
|
});
|