mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
Adds Namespace UI to Access Control - Also adds two step buttons to other Access Control pages --------- Co-authored-by: Phil Renaud <phil@riotindustries.com>
15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { attr } from '@ember-data/model';
|
|
import Fragment from 'ember-data-model-fragments/fragment';
|
|
import { array } from 'ember-data-model-fragments/attributes';
|
|
|
|
export default class NamespaceNodePoolConfiguration extends Fragment {
|
|
@attr('string') Default;
|
|
@array('string') Allowed;
|
|
@array('string') Disallowed;
|
|
}
|