mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
15 lines
372 B
JavaScript
15 lines
372 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import WatchableNamespaceIDs from './watchable-namespace-ids';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
export default class JobScaleAdapter extends WatchableNamespaceIDs {
|
|
urlForFindRecord(id, type, hash) {
|
|
return super.urlForFindRecord(id, 'job', hash, 'scale');
|
|
}
|
|
}
|