Ember data error: Assertion Failed: You can only add a 'user' record to this relationship

The error message says that you are trying to add an object that is not derived from the user model (App.User = DS.User.extend …).

Can you show the Usermodel definition and the object you are trying to add? And another thing:

message: attr(),

should be

message: attr('string'),