hhff/spree-ember

View on GitHub
packages/core/app/models/product-property.js

Summary

Maintainability
A
0 mins
Test Coverage
import DS from 'ember-data';

export default DS.Model.extend({
  presentation: DS.attr('string'),
  propertyName: DS.attr('string'),
  value:        DS.attr('string'),

  // Relationships
  product: DS.belongsTo('product')
});