github.com/thomasobenaus/nomad@v0.11.1/ui/app/models/namespace.js (about)

     1  import { readOnly } from '@ember/object/computed';
     2  import Model from 'ember-data/model';
     3  import attr from 'ember-data/attr';
     4  
     5  export default Model.extend({
     6    name: readOnly('id'),
     7    hash: attr('string'),
     8    description: attr('string'),
     9  });