Add basic dunlop/user-filter model connected to the dunlop-core api since these filters are engine/adapter independent

This commit is contained in:
2018-11-17 22:36:58 -03:00
parent 2b0248fbb8
commit 88d5f55e90
6 changed files with 64 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import DS from 'ember-data'
export default DS.Model.extend
scope_key: DS.attr('string')
filters: DS.attr(defaultValue: -> {})
is_default: DS.attr('boolean', defaultValue: false)