mirror of https://github.com/status-im/consul.git
21 lines
544 B
JavaScript
21 lines
544 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Fragment from 'ember-data-model-fragments/fragment';
|
|
import { fragment } from 'ember-data-model-fragments/attributes';
|
|
import { attr } from '@ember-data/model';
|
|
|
|
export const schema = {
|
|
Action: {
|
|
defaultValue: 'allow',
|
|
allowedValues: ['allow', 'deny'],
|
|
},
|
|
};
|
|
|
|
export default class IntentionPermission extends Fragment {
|
|
@attr('string', { defaultValue: () => schema.Action.defaultValue }) Action;
|
|
@fragment('intention-permission-http') HTTP;
|
|
}
|