Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
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;
}