1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-16 00:00:03 +01:00
VILLASweb/app/models/entity.js
Markus Grigull 64d1c6e479 Add context broker backend
The context broker is connected via the custom adapter and
serializer. At the moment only the entity IDs are shown
but the property table is empty.

Mirage is disabled.
2015-10-01 14:09:27 +02:00

6 lines
118 B
JavaScript

import DS from 'ember-data';
export default DS.Model.extend({
type: DS.attr('string'),
properties: DS.attr()
});