Code Review For Training Tomorrow

Hi Everyone,

I’ll be doing some ember training shortly and I’d really love some feedback on the application I’m having the students build. Its extremely important that I show them the best way to build the app and any feedback is appreciated.

The code can be found up on GitHub at https://github.com/bittersweetryan/mello.

Thanks! Ryan

Great example app!

Just one question as an Ember noob: why use DS.attr( ) whitout specifing a type? Does it have any downsides?

@alpacaaa Without specifying a type Ember will try to determine what it is based on the server’s payload. Specifying a type will always try to coerce it to that type: Defining Models - Ember Data - Ember Guides

Ok cool! I’ve been digging into the code and found it very useful, thanks for sharing :slight_smile: