mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 02:45:42 +03:00
Co-authored-by: Phil Renaud <phil@riotindustries.com> Co-authored-by: Luiz Aoqui <luiz@hashicorp.com>
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import ApplicationSerializer from './application';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
export default class NodePool extends ApplicationSerializer {
|
|
primaryKey = 'Name';
|
|
}
|