Last active
November 26, 2017 02:15
-
-
Save denzo/f9f9b375bd0767621b0cab435801651c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/models/action.js | |
import Model from 'ember-data/model'; | |
import attr from 'ember-data/attr'; | |
export default Model.extend({ | |
label: attr('string'), | |
status: attr('action-status') // before it was attr('number') | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment