Having to populate a User object with the data returned from Yola().get_user() is annoying, especially since the service returns signupDate and the model expects that attribute to be named signup_date.
Let's use this new User.get() method so we never have to deal with that again.
Having to populate a User object with the data returned from
Yola().get_user()
is annoying, especially since the service returnssignupDate
and the model expects that attribute to be namedsignup_date
.Let's use this new
User.get()
method so we never have to deal with that again.