ember-parse-adapter icon indicating copy to clipboard operation
ember-parse-adapter copied to clipboard

Passing classes to store methods has been removed

Open hamzahio opened this issue 9 years ago • 3 comments

i try to call ParseUser.login()

"Passing classes to store methods has been removed. Please pass a dasherized string instead of undefined"

hamzahio avatar Aug 07 '15 02:08 hamzahio

Ember

Ember      : 1.13.6
Ember Data : 1.13.7
jQuery     : 1.11.3

hamzahio avatar Aug 07 '15 02:08 hamzahio

You need to downgrade to ember data 1.0.0-beta.18

cigoe avatar Aug 07 '15 03:08 cigoe

i downgrade ember data but i got error

    singup: function(){
      var self = this;
      var user = this.store.createRecord('parse-user');
      user.set('username',self.get('username'));
      user.set('password',self.get('password'));
      user.set('email',self.get('email'));
      user.signup();
   });

error

Uncaught TypeError: undefined is not a function

hamzahio avatar Aug 07 '15 03:08 hamzahio