mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 16:35:44 +03:00
15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Model from '@ember-data/model';
|
|
import { attr } from '@ember-data/model';
|
|
|
|
export default class Policy extends Model {
|
|
@attr('string') name;
|
|
@attr('string') description;
|
|
@attr('string') rules;
|
|
@attr() rulesJSON;
|
|
}
|